import { type ReactNode } from "react"; import { BaseChartConfigurationPanel } from "./BaseChartConfigurationPanel.js"; import { type IConfigurationPanelContentProps } from "./ConfigurationPanelContent.js"; import { type IAxisProperties } from "../../interfaces/AxisType.js"; export interface IWaterfallChartConfigurationPanel extends IConfigurationPanelContentProps { dataLabelDefaultValue?: string | boolean; } export declare class WaterfallChartConfigurationPanel extends BaseChartConfigurationPanel { protected renderConfigurationPanel(): ReactNode; protected renderLegendSection(): ReactNode; protected getBaseChartAxisSection(axes: IAxisProperties[]): import("react/jsx-runtime").JSX.Element[]; } //# sourceMappingURL=WaterfallChartConfigurationPanel.d.ts.map