import { Mutation } from "@tanstack/react-query"; /** * Tracks all active React Query mutations with lightweight change detection. Debounces cache * updates so large mutation batches do not thrash the UI thread on mobile. */ declare function useAllMutations(): { mutations: Mutation[]; }; export default useAllMutations; //# sourceMappingURL=useAllMutations.d.ts.map