import { ModalProps } from 'antd';
export interface IDynamicDialogProps extends ModalProps {
}
export interface IDynamicImperativeProps {
    openDialog: () => void;
    closeDialog: () => void;
}
