import type { WithDataAttributes } from '@mui/utils/types'; import type { ChartsTooltipProps } from "./ChartsTooltip.js"; import type { TriggerOptions } from "./utils.js"; import type { TooltipPropsOverrides } from "../models/chartsSlotsComponentsProps.js"; export interface ChartsTooltipSlots { /** * Custom component for the tooltip popper. * @default ChartsTooltipRoot */ tooltip?: React.ElementType & TooltipPropsOverrides>; } export interface ChartsTooltipSlotProps { /** * Custom component for the tooltip popper. * @default ChartsTooltipRoot */ tooltip?: WithDataAttributes> & TooltipPropsOverrides>; }