import { SportsBodyStructure } from './sports-body-structure';
import { LocationsBodyStructure } from './locations-body-structure';
import { NameValueRecord, Subscription } from '../../../../entities/core-entities/common/index.js';
/**
 * Outright League Fixture Snapshot class is responsible for
 * deserializing the response from the snapshot API to a
 * outright league fixture structure.
 */
export declare class OutrightLeagueFixtureSnapshot {
    subscription: Subscription;
    sport: SportsBodyStructure;
    location: LocationsBodyStructure;
    lastUpdate: Date;
    status: number;
    extraData?: NameValueRecord[];
}
