///
import { FormInstance } from 'antd/lib/form';
export interface FormProps {
onCancel: (flag?: boolean, formVals?: any) => void;
onSubmit: (value: any) => Promise;
modalVisible: boolean;
values?: any;
children: React.ReactElement;
formRef?: FormInstance;
width?: number;
}