import { MarketDefinition } from './market-types'; export declare enum MarketStatus { SUSPENDED = "SUSPENDED", ACTIVE = "ACTIVE", INACTIVE = "INACTIVE", OPEN = "OPEN", CLOSED = "CLOSED", LOCK = "LOCK", SAFE = "SAFE", BALL_RUNNING = "BALL_RUNNING", READY = "READY", NEW = "NEW" } export declare function getMarketStatus(input?: string): MarketStatus | string; export interface MarketDefCollection { isExchange: boolean; isFancy: boolean; isLineExchange: boolean; isSportsBook: boolean; value: MarketDefinition; }