import { AuthClient } from '../client'; import { ErrorPayload } from '../errors'; import { ChangePasswordResponse } from '../types'; export declare type ChangePasswordContext = { error: ErrorPayload | null; }; export declare type ChangePasswordEvents = { type: 'REQUEST'; password?: string; ticket?: string; } | { type: 'SUCCESS'; } | { type: 'ERROR'; error: ErrorPayload | null; }; export declare type ChangePasswordServices = { requestChange: { data: ChangePasswordResponse; }; }; export declare type ChangePasswordMachine = ReturnType; export declare const createChangePasswordMachine: ({ backendUrl, interpreter }: AuthClient) => import("xstate").StateMachine>; //# sourceMappingURL=change-password.d.ts.map