import type { ReactNode } from 'react'; import type { ChartDatapoint } from '../types/chart-data.js'; /** * @internal */ export type TooltipProps = { hidden?: boolean; children?: (payload: TData) => ReactNode; }; /** * @internal */ export declare const Tooltip: (prefix: string) => { (props: T): null; displayName: string; }; //# sourceMappingURL=Tooltip.d.ts.map