import type { CandlePoint, LiveChartPoint, SeriesConfig } from "../types"; /** A single historical line sample is enough to anchor the live tip. */ export declare function hasLineChartData(points: LiveChartPoint[]): boolean; /** A single committed OHLC bucket is drawable as a candle. */ export declare function hasCandleChartData(candles: CandlePoint[] | undefined): boolean; /** Multi-series charts are non-empty when any series has one sample. */ export declare function hasMultiSeriesChartData(series: SeriesConfig[]): boolean; //# sourceMappingURL=chartDataPresence.d.ts.map