export interface WtaMatch { player1: string; player2: string; tournament: string; status: string; startTime: string; } export interface WtaMarket { conditionId: string; question: string; slug: string; favoriteOutcome: string; favoritePrice: number; favoriteTokenId: string; underdogOutcome: string; underdogPrice: number; underdogTokenId: string; stinkBidPrice: number; tickSize: string; negRisk: boolean; closed: boolean; } /** Fetch today's WTA matches from ESPN */ export declare function getWtaSchedule(): Promise; /** Generate Polymarket slug candidates from player names */ export declare function generateSlugs(player1: string, player2: string, date: string): string[]; /** Discover WTA markets on Polymarket for today's matches */ export declare function discoverWtaMarkets(discountPct?: number): Promise; //# sourceMappingURL=wta-discovery.d.ts.map