import { ParticipantRole } from 'src/common/enum/participant-role.enum';
export declare class BulkRegisterParticipantsDto {
    programId?: number;
    sessionId?: number;
    role?: ParticipantRole;
    batchSize?: number;
}
