import { useVeloPlot as useVeloPlotImpl } from './useVeloPlot'; /** * React bindings for Velo Plot */ export { VeloPlot, type VeloPlotProps, type VeloPlotRef, type VeloPlotSeries, } from './VeloPlot'; export { StackedPlot, type StackedPlotProps, type StackedPlotRef, type StackedPlotIndicator, } from './StackedPlot'; export { useVeloPlot, type UseVeloPlotOptions, type UseVeloPlotReturn, } from './useVeloPlot'; export { useStackedPlot, type UseStackedPlotOptions, type UseStackedPlotReturn, } from './useStackedPlot'; export { useIndicator, type UseIndicatorReturn, } from './useIndicator'; export { useChartSync, useChartGroup, type UseChartSyncReturn, } from './useChartSync'; /** * @deprecated Use `VeloPlot` instead. **Removed in v4.0.** */ export declare const SciPlot: import('react').ForwardRefExoticComponent>; /** * @deprecated Use `VeloPlot` instead. **Removed in v4.0.** */ export declare const SciChart: import('react').ForwardRefExoticComponent>; /** * @deprecated Use `useVeloPlot` instead. **Removed in v4.0.** */ export declare const useSciPlot: typeof useVeloPlotImpl; /** * @deprecated Use `useVeloPlot` instead. **Removed in v4.0.** */ export declare const useSciChart: typeof useVeloPlotImpl; export type { VeloPlotProps as SciPlotProps, VeloPlotRef as SciPlotRef, VeloPlotSeries as SciPlotSeries, VeloPlotProps as SciChartProps, VeloPlotRef as SciChartRef, VeloPlotSeries as SciChartSeries, } from './VeloPlot'; export type { UseVeloPlotOptions as UseSciPlotOptions, UseVeloPlotReturn as UseSciPlotReturn, UseVeloPlotOptions as UseSciChartOptions, UseVeloPlotReturn as UseSciChartReturn, } from './useVeloPlot';