///
import type { TooltipProps } from './type';
/**
* Hover tooltip that wraps any child element in a Box. Shows `title` on hover with an arrow pointer.
* Defaults to `top` placement. Use `wrapperProps` to customise the Box that wraps children.
*
* Restyling note: MUI Tooltip clones its child and manages positioning internally — there is no
* owned interactive DOM node to forward `ref` to. Consumer `className` is routed to the popper
* bubble via the styled Tooltip's `className` prop (mapped to `classes.popper`), not to a root
* element directly.
*/
declare function Tooltip({ className, title, placement, children, wrapperProps, sx, ...rest }: TooltipProps): import("react").JSX.Element;
declare namespace Tooltip {
var displayName: string;
}
declare const _default: import("react").MemoExoticComponent;
export default _default;