import { ComponentType } from "react"; export type TooltipHOCProps = Readonly<{ tooltipContent?: React.ReactNode; tooltipWithPortal?: boolean; tooltipDefaultOpen?: boolean; }>; export declare const withTooltip: (WrappedComponent: ComponentType) => { ({ tooltipContent, tooltipDefaultOpen, tooltipWithPortal, ref, ...props }: T & TooltipHOCProps & React.RefAttributes): import("react").JSX.Element; displayName: string; }; //# sourceMappingURL=TooltipHOC.d.ts.map