import { MutableRefObject } from 'react'; import { FormStore } from './createFormStore'; import { ScrollIntoViewOptions } from '../utils'; export interface FieldContextValue { formStore?: FormStore; layout?: 'horizontal' | 'vertical'; labelWidth?: number | string; labelAlign?: 'start' | 'center' | 'end'; labelValign?: 'start' | 'center' | 'end'; starPosition?: 'left' | 'right'; disabled?: boolean; readOnly?: boolean; contextId: string; pageScrollTop: MutableRefObject; scrollIntoViewOptions?: ScrollIntoViewOptions; } declare const FieldContext: import("react").Context; export default FieldContext;