/** * useTrack - Get a stable, memoized track function * * Returns a track function that doesn't cause re-renders when passed to child components. * Prevents unnecessary re-renders compared to using useCallback. */ import type { TrackFunction } from '../types'; export declare function useTrack(): TrackFunction; //# sourceMappingURL=useTrack.d.ts.map