import { flags, SfdxCommand } from "@salesforce/command"; import { AnyJson } from "@salesforce/ts-types"; export default class Guide extends SfdxCommand { static description: string; static examples: string[]; protected static requiresUsername: boolean; protected static flagsConfig: { webhookuri: flags.Discriminated; message: flags.Discriminated; }; run(): Promise; }