import { ReactNode } from 'react'; export declare type PopoverProps = { /** Title text for the popover panel. */ title: string; /** Items for the popover panel. */ items?: { /** The name of the item. */ name: string; /** The description text for the item. */ description: string; /** The href to link to on click. */ href: string; /** * */ icon?: ReactNode; }[][]; }; /** Popovers are perfect for floating panels with arbitrary content like navigation menus, mobile menus and flyout menus. */ export declare const Popover: ({ title, items }: PopoverProps) => JSX.Element;