import type { BaseResult } from "..";
type ValidateSecurityData = BaseResult & {
    password: string;
    security_code: string;
    email: string;
    phone: string;
    secret_answer_1: string;
    secret_answer_2: string;
    birth_date: Date;
};
export type { ValidateSecurityData };
