import { SignUpSecurityKeyOptions } from '../types'; import { ActionLoadingState, NeedsEmailVerificationState, SessionActionHandlerResult } from './types'; export interface SignUpSecurityKeyHandlerResult extends SessionActionHandlerResult, NeedsEmailVerificationState { } export interface SignUpSecurityKeyState extends SignUpSecurityKeyHandlerResult, ActionLoadingState { } export declare const signUpEmailSecurityKeyPromise: (interpreter: import("xstate").Interpreter>, email: string, options?: SignUpSecurityKeyOptions) => Promise; //# sourceMappingURL=signUpEmailSecurityKey.d.ts.map