import type { SharedFormFieldContextProps } from '../contexts/FormFieldContext.js'; /** * Return type of `useFormFieldContext`. Custom context values may omit * registration helpers and the member-id array; the hook fills in defaults so * consumers can rely on them being present. * @internal */ export type FormFieldContextValue = SharedFormFieldContextProps & { memberFormControlIds: string[]; registerFormControlId: (id: string) => () => void; registerMemberFormControlId: (id: string) => () => void; registerFormFieldLabelId: (id: string) => () => void; }; /** * @internal */ export declare const useFormFieldContext: () => FormFieldContextValue; //# sourceMappingURL=useFormFieldContext.d.ts.map