import { WatchCallback, WatchHandle, WatchSource } from 'vue'; type MaybeUndefined = I extends true ? T | undefined : T; export interface WatchCachedOptions { immediate?: Immediate; } /** Alternative to `watch`, but triggering only on actual data changes */ export declare function watchCached = false>(source: WatchSource, cb: WatchCallback>, options?: WatchCachedOptions): WatchHandle; export {}; //# sourceMappingURL=watchCached.d.ts.map