import { Logger } from './logger'; import { Command } from './command'; export declare class SimulateCommand implements Command { private readonly storyPath; private readonly locale; private readonly quiet; private readonly logger; constructor(storyPath: string, locale: string, quiet: boolean, logger: Logger); run(): Promise; private simulateStory; }