import { Ref } from 'vue'; export interface ThrottleOptions { wait?: number; leading?: boolean; trailing?: boolean; } declare function useThrottle(value: Ref, options?: ThrottleOptions): Ref; export default useThrottle;