/**
 * ParticipantSchedule class is responsible for
 * deserializing the response from the subscription
 * API to a participant schedule.
 */
export declare class ParticipantSchedule {
    id: number;
    position: number;
    name?: string;
}
