import { Bet } from '../../../../entities/core-entities/market/bet';
/**
 * Outright Market Element Structure class is responsible for
 * deserializing the response from the snapshot API to a
 * outright market element structure.
 */
export declare class OutrightMarketBodyStructure {
    id: number;
    name: string;
    bets: Bet[];
}
