import type { TimeseriesChartConfiguration } from './types/timeseries-config.js'; import type { TimeseriesChartRef } from './types/timeseries-ref.js'; export interface _TimeseriesChartProps { config: TimeseriesChartConfiguration; } export declare const TimeseriesChart: (props: _TimeseriesChartProps & { children?: import("react").ReactNode | undefined; } & import("react").RefAttributes) => import("react").ReactElement | null;