export interface MarketInfo { conditionId: string; slug: string; question: string; tickSize: string; negRisk: boolean; yesTokenId: string; yesPrice: number; noTokenId: string; noPrice: number; tokenId: string; } export declare function resolveMarketByConditionId(conditionId: string): Promise; export declare function pickTokenId(info: MarketInfo, outcome: "YES" | "NO"): string; export declare function pickPrice(info: MarketInfo, outcome: "YES" | "NO"): number; //# sourceMappingURL=market-resolver.d.ts.map