import { InterpreterFrom } from 'xstate'; import { SendVerificationEmailMachine } from '../machines'; import { SendVerificationEmailOptions } from '../types'; import { ActionErrorState, ActionLoadingState } from './types'; export interface SendVerificationEmailHandlerResult extends ActionErrorState { /** Returns `true` when a new verification email has been sent */ isSent: boolean; } export interface SendVerificationEmailState extends ActionLoadingState, SendVerificationEmailHandlerResult { } export declare const sendVerificationEmailPromise: (interpreter: InterpreterFrom, email: string, options?: SendVerificationEmailOptions) => Promise; //# sourceMappingURL=sendVerificationEmail.d.ts.map