import { Popover } from '@headlessui/react'; import { HTMLAttributes, PropsWithChildren } from 'react'; export declare namespace PopoverMenu { function Root(props: HTMLAttributes): JSX.Element; const Trigger: typeof Popover.Button; function Items({ left, right, ...props }: HTMLAttributes & { left?: boolean; right?: boolean; }): JSX.Element; function Header({ children }: PropsWithChildren<{}>): JSX.Element; function Footer({ children }: PropsWithChildren<{}>): JSX.Element; }