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