import { TimeseriesBarSlotProps } from '../../../types/timeseries.js'; import { BaseDisplayProps } from '../shared/types.js'; export interface BarChartDisplayProps extends BaseDisplayProps { series: TimeseriesBarSlotProps[]; } /** * Displays the passed series as stacked bar chart. */ export declare const BarChartDisplay: { ({ series: barSeries, xScale, }: BarChartDisplayProps): import("react/jsx-runtime").JSX.Element; displayName: string; };