import { type PropsWithChildren } from 'react'; import type { ChartLoaderOverlayProps } from './types.js'; /** * @internal * * Component used to decide if some actions should be done during charts * loading states. */ export declare const ChartLoaderOverlay: { ({ children, loading, zoomEnabled, }: PropsWithChildren): string | number | boolean | Iterable | import("react/jsx-runtime.js").JSX.Element | null | undefined; displayName: string; };