import { Ref } from 'vue-demi'; export interface DebounceOptions { wait?: number; leading?: boolean; trailing?: boolean; } declare type ComputedGetter = (ctx?: any) => T; export declare function useDebounce(value: Ref | ComputedGetter, options?: DebounceOptions): Ref>; export {};