import type { MaybeRef } from './_shared'; import type { Ref } from '@stacksjs/stx'; /** * Throttle a value. Returns a ref that updates at most once per interval. * * @param value - The source value or ref * @param ms - Throttle interval in milliseconds. Default: 200 */ export declare function useThrottle(value: MaybeRef, ms?: number): Ref;