import { ReactNode } from 'react'; export interface PopoverButtonProps { /** Contents of the menu when opened */ children: ReactNode; /** Contents of button */ label: ReactNode; } /** * Renders a button that display `children` in a popover widget. */ export default function PopoverButton(props: PopoverButtonProps): JSX.Element; //# sourceMappingURL=PopoverButton.d.ts.map