1 | import * as React from 'react';
|
2 | import type { ColProps } from 'antd/lib/grid/col';
|
3 | import type { FormLabelAlign } from './FormItem';
|
4 | export interface FormContextProps {
|
5 | vertical: boolean;
|
6 | colon?: boolean;
|
7 | labelAlign?: FormLabelAlign;
|
8 | labelCol?: ColProps;
|
9 | wrapperCol?: ColProps;
|
10 | }
|
11 | declare const FormContext: React.Context<FormContextProps>;
|
12 | export default FormContext;
|