import { Logger } from './logger'; import { SpecialPaths, ConfigPaths } from './specialPaths'; import { ConfigAccessor } from '@alexa-games/sfb-skill'; import { Command } from './command'; import { StdOutput } from './stdOutput'; export declare class StageLayerCommand implements Command { private readonly storyPath; private readonly logger; private readonly stdOutput; constructor(storyPath: string, logger: Logger, stdOutput: StdOutput); setupCodeDirectory(dirs: SpecialPaths, configDirs: ConfigPaths, configHelper: ConfigAccessor): Promise; run(): Promise; }