import type { FirebaseAuthTypes } from '@react-native-firebase/auth'; export declare type AuthActionHook = [ (email: string, password: string) => Promise, T | undefined, boolean, E | undefined ]; export declare type CreateUserOptions = { emailVerificationOptions?: FirebaseAuthTypes.ActionCodeSettings; sendEmailVerification?: boolean; }; export declare type EmailAndPasswordActionHook = AuthActionHook;