import { ModelStat } from './types/model-stat.interface'; import { CortexUsecases } from '@/usecases/cortex/cortex.usecases'; import { BaseCommand } from './base.command'; import { HttpService } from '@nestjs/axios'; export declare class PSCommand extends BaseCommand { readonly cortexUsecases: CortexUsecases; private readonly httpService; constructor(cortexUsecases: CortexUsecases, httpService: HttpService); runCommand(): Promise; getModels(): Promise; private formatDuration; }