//#region ../react-form/src/hooks/form-hooks.d.ts /** * Derive a stable DOM id for a form control from its `id` prop or `name`. * * Renamed from `useId` in v4 so the package root no longer shadows React 18's * `useId` for `import { useId } from "@mongez/react-form"`. */ declare function useControlId(data: { id?: string; name: string; }): string; //#endregion export { useControlId }; //# sourceMappingURL=form-hooks.d.mts.map