import { type PropsWithChildren, type ReactElement } from 'react'; import type { TruncationMode } from '../../../../../typography/text-ellipsis/TextEllipsis.js'; import type { PointShapeType } from '../../../../core/components/shape/type.js'; /** * @internal */ export interface XYChartTooltipHeaderProps { color: string; name: string; truncationMode?: TruncationMode; actions?: () => ReactElement | Promise>; defaultActions?: ReactElement; value?: string | string[]; shape?: PointShapeType; } /** * Defines the template for the XYChart tooltip header * @internal */ export declare function XYChartTooltipHeader({ color, name, actions, defaultActions, truncationMode, value, shape, }: Readonly): import("react/jsx-runtime").JSX.Element;