import * as React from 'react'; import { ColProps } from '../grid/col'; export interface FormContextProps { prefixCls?: string; labelCol?: ColProps; wrapperCol?: ColProps; [propName: string]: any; } export declare const FormContext: React.Context;