import { IdNNameRecord } from '../../../../entities/core-entities/common/index.js'; /** * VenueBodyStructure class is responsible for * deserializing the response from the metadata * API to a venue. */ export declare class VenueBodyStructure { venueId?: number; name?: string; country?: IdNNameRecord; state?: IdNNameRecord; city?: IdNNameRecord; }