import type { ReactNode } from 'react'; import type { AriaPopoverProps } from 'react-aria'; import type { OverlayTriggerState } from 'react-stately'; export interface PopoverProps extends Omit { children: ReactNode; state: OverlayTriggerState; } declare function Popover(props: PopoverProps): import("react/jsx-runtime").JSX.Element; export default Popover; //# sourceMappingURL=Popover.d.ts.map