import type * as React from 'react'; export interface ChartsToolbarProps {} export interface ChartsToolbarSlots { /** * Custom component for the toolbar. * @default ChartsToolbar */ toolbar?: React.ElementType; } export interface ChartsToolbarSlotProps { /** * Props for the toolbar component. */ toolbar?: Partial; }