import type { Dispatch, FocusEventHandler, RefObject, SetStateAction } from "react"; import type { useA11yValueValue } from "../form-field-legacy"; export interface FormFieldLegacyContextValue { inFormField: true; ref: RefObject; a11yProps: useA11yValueValue; focused: boolean; setFocused: Dispatch>; onBlur: FocusEventHandler; onFocus: FocusEventHandler; } export declare const FormFieldLegacyContext: import("react").Context;