import { type PropsWithChildren } from 'react'; import type { ChartToolbarProps } from '../../types/toolbar.js'; /** * ChartToolbar Slots * @public * * @deprecated Use chart-specific Toolbar slot instead (e.g. \). */ export declare const ChartToolbar: { ({ children, }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; displayName: string; } & { /** * @deprecated Use chart specific toolbar item slots instead (e.g. \). */ DownloadData: { (): null; displayName: string; }; };