import { Atom } from "@nova-ui/bits/sdk/atoms";
import { ChartAtom } from "@nova-ui/charts/sdk/atoms/chart/atoms/chart.atom";
import { LegendSeriesAtom } from "./legend-series.atom";
export declare class TimeseriesAtom extends Atom {
    static CSS_CLASS: string;
    private root;
    get chart(): ChartAtom;
    getLegendSeries(): Promise<LegendSeriesAtom[]>;
    transformSeries(transformName: string, index: number): Promise<void>;
}
