import type { LivelinePoint } from '../types'; /** * Binary search to find interpolated value at a given time. * Returns null if time is outside data range. */ export declare function interpolateAtTime(points: LivelinePoint[], time: number): number | null; //# sourceMappingURL=interpolate.d.ts.map