export interface UserUpdatePasswordOptions {
    userId: string;
    new: string;
    existing?: string;
}
