import { type ChartsTooltipContainerProps, type ChartsTooltipClasses, type ChartsTooltipSlots, type ChartsTooltipSlotProps } from '@mui/x-charts/ChartsTooltip'; export interface SankeyTooltipSlots extends ChartsTooltipSlots {} export interface SankeyTooltipSlotProps extends ChartsTooltipSlotProps {} export interface SankeyTooltipClasses extends ChartsTooltipClasses {} export interface SankeyTooltipContentClasses extends ChartsTooltipClasses {} export interface SankeyTooltipProps extends Omit { /** * Select the kind of tooltip to display * - 'item': Shows data about the item below the mouse. * - 'none': Does not display tooltip * @default 'item' */ trigger?: 'item' | 'none'; }