import type { LaneSource } from "./lane.js"; export interface SeriesOptions { /** samples per second — maps sample index → clock time for labels */ sampleRate?: number; label?: string; /** trace color (defaults to the mascot purple) */ color?: string; /** * symlog value axis (default false): x = sign(v)·log1p(|v|/linthresh), * so a large burst compresses and the small wiggles around it expand. * Works with bipolar signals (unlike a plain log axis). */ logScale?: boolean; /** symlog linear-region threshold (default 0.05) */ linthresh?: number; } export declare function createSeriesSource(samples: ArrayLike, opts?: SeriesOptions): LaneSource; //# sourceMappingURL=timeseries.d.ts.map