/** * @template T * @template { WatchUntilOptions } O * @overload * @param { WatcherSource } source * @param { WatchUntilCallback } callback * @param { O } [options = {}] * * @returns { WatchUntilPromise } */ export function watchUntil(source: WatcherSource, callback: WatchUntilCallback, options?: O | undefined): WatchUntilPromise; import type { WatchUntilOptions } from '#reactivity'; import type { WatcherSource } from '#reactivity'; import type { WatchUntilCallback } from '#reactivity'; import type { WatchUntilPromise } from '#reactivity'; //# sourceMappingURL=watchUntil.d.ts.map