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