import { List, useWatch } from 'rc-field-form'; import type { FormProps as RcFormProps } from 'rc-field-form/lib/Form'; import * as React from 'react'; import type { Options } from 'scroll-into-view-if-needed'; import type { SizeType } from '../config-provider/SizeContext'; import type { ColProps } from '../grid/col'; import useForm, { FormInstance } from './hooks/useForm'; import type { FormLabelAlign } from './interface'; export declare type RequiredMark = boolean | 'optional'; export declare type FormLayout = 'horizontal' | 'inline' | 'vertical'; export interface FormProps extends Omit, 'form'> { prefixCls?: string; colon?: boolean; name?: string; layout?: FormLayout; labelAlign?: FormLabelAlign; labelWrap?: boolean; labelCol?: ColProps; wrapperCol?: ColProps; form?: FormInstance; size?: SizeType; disabled?: boolean; scrollToFirstError?: Options | boolean; requiredMark?: RequiredMark; /** @deprecated Will warning in future branch. Pls use `requiredMark` instead. */ hideRequiredMark?: boolean; } declare const Form: (props: FormProps & { children?: React.ReactNode; } & { ref?: React.Ref> | undefined; }) => React.ReactElement; export { useForm, List, FormInstance, useWatch }; export default Form;