import { SeriesOptions, HeatmapOptions, SeriesUpdateData } from '../../../types'; export declare function addSeries(ctx: any, options: SeriesOptions | HeatmapOptions): void; export declare function removeSeries(ctx: any, id: string): void; export declare function registerSeriesDataPreprocessor(fn: (ctx: unknown, data: SeriesUpdateData) => SeriesUpdateData): void; export declare function updateSeries(ctx: any, id: string, data: SeriesUpdateData): void; export declare function appendData(ctx: any, id: string, x: number[] | Float32Array, y: number[] | Float32Array): void; export declare function setMaxPoints(ctx: any, id: string, maxPoints: number): void;