import { WatchSource, WatchCallback, WatchOptions } from '../watch/index.js'; import { MapSources, MapOldSources } from '../utils/types.js'; import 'solid-js/types/reactive/signal'; import 'solid-js'; declare function watchOnce>>>(source: [...T], cb: WatchCallback, MapOldSources>, options?: WatchOptions): void; declare function watchOnce(sources: WatchSource, cb: WatchCallback, options?: WatchOptions): void; export { watchOnce };