import type { ReactElement } from "react"; import React from "react"; import type { Placement } from "./Tooltip.types"; interface TooltipProps { readonly children: ReactElement; /** * Tooltip text */ readonly message: string; /** * Describes the preferred placement of the Popover. * @default 'top' */ readonly preferredPlacement?: Placement; readonly setTabIndex?: boolean; } export declare function Tooltip({ message, children, preferredPlacement, setTabIndex, }: TooltipProps): React.JSX.Element; export {};