import { CommandTrigger } from "./command.run"; import { Task } from "./task.resolve"; declare const adaptors: { "shell": { validate: () => boolean; create: (task: Task, trigger: CommandTrigger) => (opts: any, ctx: any, done: any) => () => void; }; "sh": { validate: () => boolean; create: (task: Task, trigger: CommandTrigger) => (opts: any, ctx: any, done: any) => () => void; }; "bg": { validate: () => boolean; create: (task: Task, trigger: CommandTrigger) => (opts: any, ctx: any, done: any) => void; }; "bgnpm": { validate: () => boolean; create: (task: Task, trigger: CommandTrigger) => (opts: any, ctx: any, done: any) => void; }; "npm": { validate: () => boolean; create: (task: Task, trigger: CommandTrigger) => (opts: any, ctx: any, done: any) => () => void; }; "cb": { validate: () => boolean; create: (task: Task, trigger: CommandTrigger) => (options: any, ctx: any, done: any) => any; }; }; export = adaptors;