export interface FlowSignal { conditionId: string; title: string; side: string; traders: { address: string; name: string; amount: number; price: number; rank: number; }[]; totalAmount: number; avgPrice: number; strength: "strong" | "moderate" | "weak"; } export interface FlowOptions { topN?: number; maxAgeMinutes?: number; minSignalTraders?: number; } export declare function discoverSmartFlow(opts?: FlowOptions): Promise; //# sourceMappingURL=smart-flow.d.ts.map