import { type WritableComputedRef } from 'vue'; type DirectlyWritable = { set _value(v: T); }; /** * Debounced model allow reactive components to * render changes after certain amount of delay * @param initialValue the initial value */ export declare function useDebouncedModel(initialValue?: T | (() => T), debug?: { onUpdate?: (v: T) => void; }): WritableComputedRef & DirectlyWritable; export {};