@base-ui-components/react
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
18 lines (17 loc) • 526 B
TypeScript
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 };