import { PasswordStrength } from './';
export interface IResetPassword {
    /** New password to be set. */
    newPassword?: string;
    /** New password's strength indicator. */
    passwordStrength?: PasswordStrength;
    /** Password reset token.  */
    token?: string;
    /** User's email address. */
    email?: string;
}
//# sourceMappingURL=IResetPassword.d.ts.map