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