import { AuthClient } from '../client'; import { ErrorPayload } from '../errors'; import { SendVerificationEmailOptions, SendVerificationEmailResponse } from '../types'; export declare type SendVerificationEmailContext = { error: ErrorPayload | null; }; export declare type SendVerificationEmailEvents = { type: 'REQUEST'; email?: string; options?: SendVerificationEmailOptions; } | { type: 'SUCCESS'; } | { type: 'ERROR'; error: ErrorPayload | null; }; export declare type SendVerificationEmailServices = { request: { data: SendVerificationEmailResponse; }; }; export declare type SendVerificationEmailMachine = ReturnType; export declare const createSendVerificationEmailMachine: ({ backendUrl, clientUrl }: AuthClient) => import("xstate").StateMachine>; //# sourceMappingURL=send-verification-email.d.ts.map