import React from 'react'; import { ErrorListProps } from 'antd/lib/form/ErrorList'; import { FormProviderProps } from 'antd/lib/form/context'; import { FormListProps } from 'antd/lib/form/FormList'; import type { FormItemProps, FormProps, FormInstance } from 'antd'; import './index.less'; declare const Form: { (props: FormProps & { children?: React.ReactNode; } & { ref?: React.Ref | undefined; }): React.JSX.Element; Item(props: FormItemProps): React.JSX.Element; List(props: FormListProps): React.JSX.Element; ErrorList(props: ErrorListProps): React.JSX.Element; Provider(props: FormProviderProps): React.JSX.Element; useForm: typeof import("antd/lib/form/Form").useForm; useFormInstance: typeof import("antd/lib/form/hooks/useFormInstance").default; useWatch: typeof import("rc-field-form/es/useWatch").default; }; export { Form };