import { CrossbowInput } from "./index"; import { OutgoingWatchTask } from "./watch.preprocess"; export declare enum WatchTaskErrorTypes { WatchTaskNameNotFound, } export interface WatchTaskError { type: WatchTaskErrorTypes; } export interface WatchTaskNameNotFoundError extends WatchTaskError { taskName: string; } export declare function gatherWatchTaskErrors(outgoing: OutgoingWatchTask, input: CrossbowInput): WatchTaskError[];