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