import { ReactNode } from 'react'; import type { ModalProps } from 'antd'; type IModalProps = Omit; export interface DModalProps extends IModalProps { children?: ReactNode | undefined; mode?: 'absolute' | 'relative' | 'panel' | 'fixed'; } export {};