//#region ../react-form/src/hooks/useWatch.d.ts /** * Reactively read form values from any descendant of a `Form` / `NativeForm`. * * - `useWatch()` → the whole collected values object (re-renders on any change). * - `useWatch("user.email")` → that single control's current value. * - `useWatch(["a", "b"])` → an array of those controls' values. * * For the single / `names[]` forms the component re-renders **only when the * watched value(s) change**, not on every unrelated field change. */ declare function useWatch(): Record; declare function useWatch(name: string): any; declare function useWatch(names: string[]): any[]; //#endregion export { useWatch }; //# sourceMappingURL=useWatch.d.mts.map