interface LoginFlowProps { requestOtp: (email: string) => Promise; verifyOtp: (email: string, code: string) => Promise; error: string; isSubmitting: boolean; } export declare function LoginFlow({ requestOtp, verifyOtp, error, isSubmitting }: LoginFlowProps): import("react/jsx-runtime").JSX.Element; export {};