import * as React from "react"; import { PopoverPosition } from "@patternfly/react-core/dist/js/components/Popover"; import "./PopoverMenu.css"; export interface PopoverMenuProps { children?: React.ReactElement; arrowPlacement?: () => HTMLElement; body: React.ReactNode; appendTo?: HTMLElement | ((ref?: HTMLElement) => HTMLElement); className?: string; hasAutoWidth?: boolean; minWidth?: string; isVisible?: boolean | null; onHidden?: () => void; onCancel?: (event?: MouseEvent | KeyboardEvent) => void; onShown?: () => void; position?: PopoverPosition; distance?: number; } export interface PopoverMenuRef { setIsVisible: (isVisible: boolean) => void; } export declare const PopoverMenu: React.ForwardRefExoticComponent>; //# sourceMappingURL=PopoverMenu.d.ts.map