import { ClientSdk, IMockAuthMgmt, User } from '@forest-fire/types'; export declare const emailExistsAsUserInAuth: (api: IMockAuthMgmt) => (email: string) => boolean; export declare const emailIsValidFormat: (_api: IMockAuthMgmt) => (email: string) => boolean; export declare const emailHasCorrectPassword: (api: IMockAuthMgmt) => (email: string, password: string) => boolean; export declare const emailVerified: (api: IMockAuthMgmt) => (email: string) => boolean; export declare const userUid: (api: IMockAuthMgmt) => (email: string) => string; export declare const emailValidationAllowed: (api: IMockAuthMgmt) => () => boolean; export declare const loggedIn: (api: IMockAuthMgmt) => (user: User) => void; export declare const loggedOut: (api: IMockAuthMgmt) => () => void;