import { Context } from '../core/Context';
import { WatcherAction } from '../watcher/watcher';
export interface IWatcherAttachProps {
    ctx: Context;
}
export interface OnWatcherProps {
    action: WatcherAction;
    file: string;
    ctx: Context;
}
export declare function attachWatcher(props: IWatcherAttachProps): void;
