import React from 'react'; import { FormProps } from 'antd/lib/form'; import { FormComponentProps, RcBaseFormProps } from 'antd/lib/form/Form'; interface IField { label?: string; field?: string; fieldType: string; width?: string | number; style?: React.CSSProperties; [key: string]: any; } interface FormContainerProps extends FormProps, RcBaseFormProps { fields: IField[]; form: FormComponentProps['form']; data?: any; onValuesChange?: (changedValues: any, allValues: any) => void; } declare const _default: import("antd/lib/form/interface").ConnectedComponentClass>>, Pick>; export default _default;