/** * Primitive Hooks * * Low-level, reusable hook utilities that serve as building blocks * for more complex hooks. These hooks encapsulate common patterns * like async operations, rate limiting, and stable callbacks. * * @since v1.35.0 */ export { useAsyncProgress, type AsyncStatus, type AsyncProgressState, type AsyncProgressFn, type UseAsyncProgressOptions, type UseAsyncProgressReturn, } from './useAsyncProgress.js'; export { useRateLimiting, useThrottle, useDebounce, useDebouncedValue, useThrottleFn, useDebounceFn, type RateLimitMode, type UseRateLimitingOptions, type UseRateLimitingReturn, } from './useRateLimiting.js'; export { useEventCallback, useStableCallback, useLatestValue } from './useEventCallback.js'; //# sourceMappingURL=index.d.ts.map