import type { ReactNode } from 'react'; import type { RenderTooltipContentData, TooltipFormatters } from '../types'; interface Group { title: string; indexes: number[]; } export interface Options { title?: string; groups?: Group[]; formatters?: TooltipFormatters; } export declare function renderLinearTooltipContent(tooltipData: RenderTooltipContentData, options?: Options): ReactNode; export {}; //# sourceMappingURL=renderLinearTooltipContent.d.ts.map