import { ModalProps } from 'antd'; import React, { FC } from 'react'; export interface Props extends Omit { loading?: boolean; fixHeight?: boolean; onCancel?: (e?: React.MouseEvent) => void; } declare const Index: FC; export default Index;