import { WatchCallback } from '../watch/index.js'; import { Accessor, OnOptions } from 'solid-js/types/reactive/signal'; /** * Shorthand for watching value to be truthy. * * @see https://solidjs-use.github.io/solidjs-use/shared/whenever */ declare function whenever(source: Accessor, cb: WatchCallback, onOptions?: OnOptions): () => void; export { whenever };