import { CommandRunner } from 'nest-commander'; import { StorageService } from '../services/storage.service.js'; import { ConfigService } from '../services/config.service.js'; import { BrowserValidationService } from '../services/browser-validation.service.js'; interface InitCommandOptions { browserPath: string; force?: boolean; } export declare class InitCommand extends CommandRunner { private readonly storageService; private readonly configService; private readonly browserValidationService; constructor(storageService: StorageService, configService: ConfigService, browserValidationService: BrowserValidationService); run(_passedParams: string[], options: InitCommandOptions): Promise; parseBrowserPath(val: string): string; parseForce(val: string): boolean; private createSampleScenarios; } export {};