import { InviteChannel, InviteScope } from '../entities/meeting-invite.entity';
export declare class CreateInviteDto {
    recipient_name?: string;
    recipient_email?: string;
    recipient_mobile?: string;
    recipient_user_id?: number;
    scope?: InviteScope;
    channel?: InviteChannel;
    grant_role?: string;
    ttl_hours?: number;
    send_now?: boolean;
}
