import type { MarketSignal, CompositeSignals, SentimentSnapshot } from '../types.js'; export declare function computeComposites(signals: MarketSignal[]): CompositeSignals; export declare function computeSentiment(options?: { minVolume?: number; noCache?: boolean; cacheTtl?: number; }): Promise;