export declare type TooltipProps = {
    text: string;
    children: any;
    enabled?: boolean;
    placement?: "bottom-end" | "bottom-start" | "bottom" | "left-end" | "left-start" | "left" | "right-end" | "right-start" | "right" | "top-end" | "top-start" | "top";
    closeOnClick?: boolean;
};
declare const _default: ({ text, children, enabled, placement, closeOnClick, }: TooltipProps) => JSX.Element;
export default _default;
