export type PolymarketCardProps = { logo: string; volume: number; drawProbabilityPct: number; teams: { teamName: string; probabilityPct: number; teamColor: string; teamLogo: string; }[]; drawColor: string; chartData: { label: string; color: string; points: Array<{ t: string; p: number; }>; }[]; }; export declare const PolymarketCard: React.FC;