import { IdentityProviderUserWithRoles, InternalApiInput, InternalApiResult } from "@kottster/common"; import { Action } from "../models/action.model"; /** * Change the password for the current user */ export declare class ChangePassword extends Action { execute({ password, newPassword }: InternalApiInput<'changePassword'>, user: IdentityProviderUserWithRoles): Promise>; }