type ChangePasswordInput = { currentPassword: string; newPassword: string; }; export declare const changePassword: ({ currentPassword, newPassword, }: ChangePasswordInput) => Promise; export declare const deleteUser: () => Promise; export {};