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