import type { NativeStackScreenProps } from "@react-navigation/native-stack"; export type PaymentStackParamList = { homePageWithPaymentOptions: undefined; numberAndOtpForPaymentScreen: undefined; paymentAmountInputScreen: undefined; }; export type PaymentStackScreenProps = NativeStackScreenProps< PaymentStackParamList, T, "PaymentStackParamList" >; export type PaymentStackScreenComponentProps = React.FC< PaymentStackScreenProps >;