export declare class UserApi { static postPasswordResetRequest: (email: string) => Promise>; static postPasswordResetValidate: (password: string, passwordRepeat: string, token: string) => Promise>; static postChangePassword: (oldPassword: string, password: string, passwordRepeat: string) => Promise>; }