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