import { BaseCommand } from '../../base/base-command'; export default class ConfigGet extends BaseCommand { static description: string; static examples: string[]; static args: { name: string; required: boolean; options: string[]; }[]; run(): Promise; }