import { type Dispatch } from 'react'; import { FormFieldReducerAction } from '../state/formfield-state-reducer.js'; import type { SharedFormFieldProps } from '../types/formfield.types.js'; /** * @public */ export interface SharedFormFieldContextProps extends SharedFormFieldProps { dispatch?: Dispatch; } /** * @internal * Context provider for `FormField` props meant to be provided to all its input-related child nodes. */ export declare const _FormFieldContext: import("react").Context;