/** * A class to return the result of validating a verify email request token */ export declare class ValidateVerifyEmailTokenResponse { /** Boolean indicating whether account is already verified */ alreadyVerified: boolean; /** Boolean indicating whether the token is valid */ validToken: boolean; /** The password reset token */ token: string; /** The ID of the user requesting the password reset */ userId: string; /** The message returned to the user */ message: string; }