import { TimeseriesBandSlotProps } from '../../../types/timeseries.js'; import { BaseDisplayProps } from '../shared/types.js'; export interface BandChartDisplayProps extends BaseDisplayProps { series: TimeseriesBandSlotProps[]; } export declare const BandChartDisplay: { ({ series: timeseries, xScale, }: BandChartDisplayProps): import("react/jsx-runtime").JSX.Element; displayName: string; };