import type * as React from 'react'; import { type ChartsToolbarProProps } from "./ChartsToolbarPro.js"; export interface ChartsToolbarProSlots { /** * Custom component for the toolbar. * @default ChartsToolbar */ toolbar?: React.ElementType; } export interface ChartsToolbarProSlotProps { /** * Props for the toolbar component. */ toolbar?: Partial; }