export declare class InviteClientDto {
    company_id: number;
    client_email: string;
    client_phone?: string;
}
export declare class ClientLoginDto {
    email?: string;
    token?: string;
}
export declare class VerifyOtpDto {
    email: string;
    otp_code: string;
    device_name?: string;
    device_type?: string;
}
export declare class ListClientAuditsDto {
    status?: string;
    limit?: number;
    page?: number;
    sort_by?: string;
    sort_order?: 'ASC' | 'DESC';
}
export declare class ResendOtpDto {
    email: string;
    token: string;
}
export declare class RefreshClientTokenDto {
    refresh_token: string;
}
export declare class ClientLogoutDto {
    refresh_token: string;
}
