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