import type { CandlePoint } from "../types"; /** * Find the candle whose time bucket contains `time`. * Each candle spans [candle.time, candle.time + candleWidthSecs). * Includes the live candle if it overlaps. Returns null if no match. */ export declare function pickCandleAtTime(candles: CandlePoint[], liveCandle: CandlePoint | null, time: number, candleWidthSecs: number): CandlePoint | null; //# sourceMappingURL=pickCandle.d.ts.map