import { IEventSources, IPayload, ICommand, Argv } from '@mvf/genvicer'; import IParams from './IParams'; declare class ExecCommand implements ICommand { private eventSources; private name; constructor(eventSources: IEventSources); setup(program: Argv): Argv; command: (args: IParams) => Promise; getName: () => string; private run; private builder; } export default ExecCommand;