import { SfdxCommand } from '@salesforce/command'; import { AnyJson } from "@salesforce/ts-types"; export default class HtmlDecode extends SfdxCommand { static description: string; static examples: string[]; protected static flagsConfig: {}; decodeHTMLEntities(text: string): string; run(): Promise; }