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