import { BaseCollectionResponse } from './base-collection-response';
import { StateBodyStructure } from '../../../common/body-entities/responses';
/**
 * StatesCollectionResponse class is responsible
 * for deserializing the response from the metadata
 * API to a collection of states.
 */
export declare class StatesCollectionResponse extends BaseCollectionResponse<StateBodyStructure> {
    constructor(data?: unknown);
    data?: StateBodyStructure[];
}
