import type { XYChartAxisBaseProps } from '../../../types/xy-chart.js'; /** * @internal */ export interface XYChartTooltipBodyProps { xAxisLabel?: XYChartAxisBaseProps['label']; yAxisLabel?: XYChartAxisBaseProps['label']; xAxisValue: string; yAxisValue: string; xAxisDuration?: string; yAxisDuration?: string; } /** * Defines the template for the XYChart tooltip body * @internal */ export declare function XYChartTooltipBody({ xAxisLabel, yAxisLabel, xAxisValue, yAxisValue, xAxisDuration, yAxisDuration, }: XYChartTooltipBodyProps): import("react/jsx-runtime.js").JSX.Element;