import { WatchRollupOptions } from './rollup/watch'; import type { TSCOptions } from './tsc/types'; export interface WatchOptions { rollup?: WatchRollupOptions; tsc?: TSCOptions | false; } export declare function startWatch(options?: WatchOptions): Promise<{ watcher: import('rollup').RollupWatcher; cleanUp: () => void; }>; export type {} from 'rollup';