import * as React from 'react'; import { TypographyVisualStyle } from 'react-magma-dom'; export interface ChartToolbarProps { /** Toolbar action buttons (ChartTableButton, ChartFullscreenButton, ChartMoreOptionsButton, etc.) */ children: React.ReactNode; /** * Heading level for the chart title. * @default 3 */ headingLevel?: 1 | 2 | 3 | 4 | 5 | 6; /** * Visual style for the heading. * @default TypographyVisualStyle.headingSmall */ headingVisualStyle?: TypographyVisualStyle; /** Chart title text */ title: string; } export declare function ChartToolbar({ children, headingLevel, headingVisualStyle, title, }: ChartToolbarProps): React.JSX.Element;