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