import { CommandRunner, InquirerService } from 'nest-commander'; import { HttpService } from '@nestjs/axios'; export declare class InitCommand extends CommandRunner { private readonly httpService; private readonly inquirerService; CORTEX_RELEASES_URL: string; constructor(httpService: HttpService, inquirerService: InquirerService); run(input: string[], options?: any): Promise; download: (engineFileName: string, version?: string) => Promise; parseEngineFileName: (options: { runMode?: 'CPU' | 'GPU'; gpuType?: 'Nvidia' | 'Others (Vulkan)'; instructions?: 'AVX' | 'AVX2' | 'AVX-512' | undefined; cudaVersion?: '11' | '12'; }) => string; rootDir: () => string; }