import React from 'react'; import { PopoverProps } from '@material-ui/core'; import { ActionPanelProps } from './ActionPanel'; export interface ActionPopoverProps extends ActionPanelProps, Omit { onClose: (event?: never) => void; } declare const ActionPopover: React.FC; export { ActionPopover };