export interface ArbitrageOpportunity { conditionId: string; question: string; tokens: { outcome: string; price: number; tokenId: string; }[]; totalPrice: number; spread: number; type: "overpriced" | "underpriced"; potentialProfit: number; } export declare function scanArbitrage(limit?: number, minSpread?: number): Promise; //# sourceMappingURL=arbitrage-scanner.d.ts.map