You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
386 B

import OriginModal from './Modal';
import { ModalStaticFunctions, globalConfig } from './confirm';
export { ActionButtonProps } from './ActionButton';
export { ModalProps, ModalFuncProps } from './Modal';
declare type Modal = typeof OriginModal & ModalStaticFunctions & {
destroyAll: () => void;
config: typeof globalConfig;
};
declare const Modal: Modal;
export default Modal;