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