///
import type { Node, S2CellType, SimpleData, TooltipShowOptions, ViewMeta } from '@antv/s2';
import type { TooltipOperatorMenuOptions } from '../../../tooltip/interface';
export interface CustomTooltipProps {
cell: S2CellType;
defaultTooltipShowOptions?: TooltipShowOptions;
label?: React.ReactNode | ((cell: S2CellType, defaultLabel: React.ReactNode) => React.ReactNode);
showOriginalValue?: boolean;
renderDerivedValue?: (currentValue: SimpleData, originalValue: SimpleData, cell: S2CellType) => React.ReactNode;
}