/** * @template T * @template { boolean } [Immediate = false] * @overload * @param { WatcherSource } source * @param { WatcherCallback } callback * @param { Omit, 'flush'> } [options = {}] * * @returns { WatchControlledSyncHandle } */ export function watchControlledSync(source: WatcherSource, callback: WatcherCallback, options?: Omit, "flush"> | undefined): WatchControlledSyncHandle; export type WatchControlledSyncHandle = WatchControls; import type { WatcherSource } from '#reactivity'; import type { WatcherCallback } from '#reactivity'; import type { WatchOptions } from 'vue'; import type { WatchControls } from '#reactivity'; //# sourceMappingURL=watchControlledSync.d.ts.map