export type Time = number | string; export interface TimeValuePair { time: Time; value: number; } export interface PlotOptions { color?: string; title?: string; lineWidth?: number; lineStyle?: 'solid' | 'dashed' | 'dotted'; offset?: number; } export declare function plot(values: (number | null)[], times: Time[], options?: PlotOptions): TimeValuePair[]; export interface PlotResult { id: string; data: TimeValuePair[]; options: PlotOptions; } export declare function createPlot(id: string, values: (number | null)[], times: Time[], options?: PlotOptions): PlotResult; //# sourceMappingURL=plot.d.ts.map