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