import { Workspace } from '../workspace';
import { Compile } from '../compiler';
import Watch from './watch';
import { CLIExtension } from '../cli';
export declare type watchDeps = [CLIExtension, Compile, Workspace];
export declare function provideWatch([cli, compile, workspace]: watchDeps): Watch;
