import { BaseCommand } from '../baseCommand.js'; export default class Skills extends BaseCommand { static hidden: boolean; static readOnly: boolean; static destructive: boolean; static idempotent: boolean; static description: string; static examples: string[]; static args: { action: import("@oclif/core/interfaces").Arg>; reference: import("@oclif/core/interfaces").Arg>; }; run(): Promise; private printOverview; private listAvailableReferences; }