import type { Ref } from '@stacksjs/stx'; /** * A watch that can also be manually triggered. */ export declare function watchTriggerable(source: Ref, callback: (value: T) => void): { stop: () => void, trigger: () => void };