import { ModalProps, DrawerTransitionName } from './Modal';
export { ModalProps, DrawerTransitionName };
export { confirmProps, } from './utils';
export declare type modalChildrenProps = {
    close: () => void;
    update: (modalProps?: Partial<ModalProps>) => void;
    props: Readonly<ModalProps>;
    handleOk: (ok: Function) => void;
    handleCancel: (cancel: Function) => void;
};
