import "isomorphic-fetch"; export declare type checkEmailResponse = { emailVerified: boolean; hasPassword: boolean; hasKiwiAccount: boolean; }; export declare type Args = { email: string; brandId: string; }; declare const checkEmail: ({ email, brandId }: Args) => Promise; export default checkEmail;