import { Node, S2CellType, SimpleData, TooltipShowOptions, ViewMeta } from '../../../../../node_modules/@antv/s2/esm/index.d.ts'; import { VNode } from 'vue'; type TooltipLabel = string | VNode | unknown; export interface CustomTooltipProps { cell: S2CellType; defaultTooltipShowOptions?: TooltipShowOptions; label?: TooltipLabel | ((cell: S2CellType, defaultLabel: TooltipLabel) => TooltipLabel); showOriginalValue?: boolean; renderDerivedValue?: (currentValue: SimpleData, originalValue: SimpleData, cell: S2CellType) => VNode; } export {};