import { Command } from '@oclif/command'; export default class SetRamLimit extends Command { static description: string; static hidden: boolean; static args: { name: string; required: boolean; }[]; run(): Promise; }