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