import { Logger } from './logger'; import { StdOutput } from './stdOutput'; import { Command } from './command'; export declare class DeployCommand implements Command { private readonly storyPath; private readonly logger; private readonly stdOutput; constructor(storyPath: string, logger: Logger, stdOutput: StdOutput); run(): Promise; }