import type { FormRuntime } from '../runtime/createFormRuntime.js'; /** * Carries the enclosing form runtime down to the controls that register with * it. `undefined` when a control is rendered outside any `
` — controls * degrade gracefully to standalone behavior in that case. * @internal */ export interface FormContextValue { /** The runtime the nearest `` created. */ runtime: FormRuntime; /** The nearest ``'s `id`, if it set one. */ formId?: string; /** Stable ID shared with `FormMessages` so fields can point aria-describedby at it. */ formMessagesId: string; } /** * @internal */ export declare const FormContext: import("react").Context; //# sourceMappingURL=FormContext.d.ts.map