import { type BoxProps } from '../Box'; export type TooltipProps = BoxProps & { variation?: 'dark' | 'light'; placement?: 'top-start' | 'top-middle' | 'top-end' | 'bottom-start' | 'bottom-middle' | 'bottom-end' | 'top' | 'left' | 'bottom' | 'right' | null; }; declare const Tooltip: import("react").ForwardRefExoticComponent>; export default Tooltip; //# sourceMappingURL=Tooltip.d.ts.map