import { type CSSProperties, type PropsWithChildren, type JSX, type ReactNode } from 'react'; import type { MaskingProps } from '@dynatrace/strato-components/core'; interface ChartStateHandlerProps extends MaskingProps { empty: boolean; height: string | number; emptyState: ReactNode | undefined; errorState: ReactNode | ((message: string) => JSX.Element) | undefined; isLoading: boolean; style?: CSSProperties; className?: string; } export declare function ChartStateHandler(props: PropsWithChildren): import("react/jsx-runtime.js").JSX.Element; export {};