import { ActiveParticipant } from '../enums';
export declare class Participant {
    id?: number;
    name?: string;
    position?: string;
    rotationId?: number;
    isActive?: ActiveParticipant;
}
