export interface Market { id: string; question: string; slug: string; volume: string; active: boolean; closed: boolean; } /** 按市场 id 查询单个市场 (@polymarket/client 统一 SDK, 2026-08-04 迁移). */ export declare function getMarket(id: string): Promise;