import { type JSX, type ReactNode } from 'react'; import { type StylingProps, MaskingProps } from '@dynatrace/strato-components/core'; import { CategoricalBarChartLegendConfiguration } from './types/categorical-bar-chart.js'; interface CategoricalBarChartLayoutProps extends StylingProps, MaskingProps { emptyState?: ReactNode; errorState: ReactNode | ((errorMessage: string) => JSX.Element) | undefined; legend: CategoricalBarChartLegendConfiguration; isEmpty: boolean; loading: boolean; height?: string; width?: number; } export declare const CategoricalBarChartLayout: (props: CategoricalBarChartLayoutProps & import("react").RefAttributes) => React.ReactElement | null; export {};