import { BaseEntity } from '../../../../entities/core-entities/index.js';
import { ParticipantBodyStructure } from '../../../common/body-entities/responses';
/**
 * ParticipantsCollectionResponse class is responsible
 * for deserializing the response from the metadata
 * API to a collection of participants.
 */
export declare class ParticipantsCollectionResponse implements BaseEntity {
    [key: string]: unknown;
    constructor(data?: unknown);
    data?: ParticipantBodyStructure[];
    totalItems?: number;
}
