export default function SimpleTooltip({ className, inputRef, tooltipPosition, show, style, value, renderTooltipContent, zIndex, ...restProps }: {
    [x: string]: any;
    className: any;
    inputRef: any;
    tooltipPosition: any;
    show?: boolean | undefined;
    style?: {} | undefined;
    value?: number | undefined;
    renderTooltipContent?: ((v: any) => any) | undefined;
    zIndex?: number | undefined;
}): JSX.Element;
//# sourceMappingURL=tooltip.d.ts.map