import {createStackNavigator} from '@react-navigation/stack'; import {VerificationScreenType} from '../../types'; export type OnboardingStackParams = { Login: undefined; PasswordResetRequest: undefined; PasswordReset: { value: string; }; InvitationCodeVerification: undefined; RegistrationOne: undefined; RegistrationTwo: {phone: string}; RegistrationThree: { firstName: string; lastName: string; phone: string; email: string; }; Checkpoint: {username: string; userId: string}; Verification: {id: string; screenType: VerificationScreenType}; ProfileOnboarding: {username: string; userId: string}; SocialMedia: {username: string; userId: string}; }; export const OnboardingStack = createStackNavigator();