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