import * as React from 'react'; import { ColProps } from '../grid/col'; import { NormalSizes } from '../config-provider'; import { Callbacks, Store } from './interface'; import './style/index.less'; export type FormLayout = 'horizontal' | 'inline' | 'vertical'; type BaseFormProps = Omit, 'onSubmit'>; export interface FormProps extends BaseFormProps { colon?: boolean; name?: string; layout?: FormLayout; labelCol?: ColProps; wrapperCol?: ColProps; ref?: any; size?: NormalSizes; initialValues?: Store; component?: false | string | React.FC | React.ComponentClass; onFinish?: Callbacks['onFinish']; onValuesChange: (changeValues: string, allValues: unknown) => void; } declare const InternalForm: React.ForwardRefExoticComponent, "ref"> & React.RefAttributes>; export default InternalForm;