import { UseVeloPlotOptions } from './useVeloPlot'; import { VeloPlotSeries } from '../bindings/shared'; export interface VeloPlotProps extends UseVeloPlotOptions { series?: VeloPlotSeries[]; width?: number | string; height?: number | string; class?: string; } export declare function VeloPlot(props: VeloPlotProps): import("react/jsx-runtime").JSX.Element; export declare function StackedPlot(props: { panes: import('../core/stacked').StackedPaneConfig[]; width?: number | string; height?: number | string; class?: string; } & Omit): import("react/jsx-runtime").JSX.Element;