///
import { Drawer } from './Drawer';
import { Modal } from './Modal';
import { Popconfirm } from './Popconfirm';
import { Popover } from './Popover';
export declare const PopActions: ((props: import("antd").ModalProps & import("./shared").IButtonType & {
actions: import("./shared").Actions;
}) => import("react").JSX.Element) & {
Popover: typeof Popover;
Popconfirm: typeof Popconfirm;
Modal: typeof Modal;
Drawer: typeof Drawer;
};