export declare class Otp {
    id: string;
    createdAt: Date;
    updatedAt: Date;
    expiresAt: Date;
    resendableAt: Date;
    value: string;
    channel: {
        email?: string;
        phone?: {
            phone_number: string;
            country_code: string;
        };
    };
}
