import { CommandRunner } from 'nest-commander'; import { CortexUsecases } from '@/usecases/cortex/cortex.usecases'; export declare class BasicCommand extends CommandRunner { private readonly cortexUsecases; constructor(cortexUsecases: CortexUsecases); run(input: string[], options?: any): Promise; parseHost(value: string): string; parsePort(value: string): number; }