import { WatchSource, WatchOptions } from '../watch/index.js'; import { Setter } from 'solid-js'; import 'solid-js/types/reactive/signal'; /** * Keep target signal(s) in sync with the Signal. * * @see https://solidjs-use.github.io/solidjs-use/shared/syncSignals */ declare function syncSignals(source: WatchSource, targets: Setter | Array>, options?: WatchOptions): () => void; export { syncSignals };