import * as React from 'react';
import { useTooltipRoot } from './useTooltipRoot.js';
/**
 * Groups all parts of the tooltip.
 * Doesn’t render its own HTML element.
 *
 * Documentation: [Base UI Tooltip](https://base-ui.com/react/components/tooltip)
 */
declare const TooltipRoot: React.FC<TooltipRoot.Props>;
declare namespace TooltipRoot {
    interface State {
    }
    interface Props extends useTooltipRoot.Parameters {
        children?: React.ReactNode;
    }
}
export { TooltipRoot };
