import { CommandTrigger } from "./command.run"; export interface UnwrappedTask { patterns: string[]; tasks: string[]; i: number; name: string; } export declare function getModifiedWatchContext(trigger: CommandTrigger): CommandTrigger; /** * take the following: * $ crossbow watch "*.js -> (lint) (unit)" * * and convert it into * patterns: ["*.js"] * tasks: ["lint", "unit"] */ export declare function unwrapShorthand(incoming: string, i: number): UnwrappedTask;