import { AuthClient } from '../client'; import { ErrorPayload } from '../errors'; import { ResetPasswordOptions, ResetPasswordResponse } from '../types'; export declare type ResetPasswordContext = { error: ErrorPayload | null; }; export declare type ResetPasswordEvents = { type: 'REQUEST'; email?: string; options?: ResetPasswordOptions; } | { type: 'SUCCESS'; } | { type: 'ERROR'; error: ErrorPayload | null; }; export declare type ResetPasswordServices = { requestChange: { data: ResetPasswordResponse; }; }; export declare type ResetPasswordMachine = ReturnType; export declare const createResetPasswordMachine: ({ backendUrl, clientUrl }: AuthClient) => import("xstate").StateMachine>; //# sourceMappingURL=reset-password.d.ts.map