import { Workers } from '../libs/worker/Workers'; import { ICommand } from '../libs/commands/ICommand'; export declare class WorkerCommand implements ICommand { workers: Workers; command: string; aliases: string; describe: string; builder(yargs: any): any; handler(argv: any): Promise; }