import type { FunctionComponent, RefObject } from 'react'; import type { MenuProps } from '../Menu/Menu.types'; export interface PresetMenuPopoverProps { heading?: string; buttonRef: RefObject; menu?: MenuProps; isOpen: boolean; onClose: () => void; } declare const PresetMenuPopover: FunctionComponent; export default PresetMenuPopover; //# sourceMappingURL=PresetMenuPopover.d.ts.map