import type { BaseResult } from "..";
import type { Email, Phone, Device } from "../entities";
type VerifySecurityData = BaseResult & {
    username: string;
    email: Email;
    phone: Phone;
    device: Device;
};
export type { VerifySecurityData };
