import { type ChartsTooltipProps } from "./ChartsTooltip.js"; import { type TriggerOptions } from "./utils.js"; export interface ChartsTooltipSlots { /** * Custom component for the tooltip popper. * @default ChartsTooltipRoot */ tooltip?: React.ElementType>; } export interface ChartsTooltipSlotProps { /** * Custom component for the tooltip popper. * @default ChartsTooltipRoot */ tooltip?: Partial>; }