import { flags, SfdxCommand } from "@salesforce/command"; import { AnyJson } from "@salesforce/ts-types"; export default class Ocr extends SfdxCommand { static description: string; static examples: string[]; protected static flagsConfig: { inputfilename: flags.Discriminated; lang: flags.Discriminated; }; protected static requiresUsername: boolean; protected static supportsDevhubUsername: boolean; scan(lang: string, url: string, outFile: string): Promise; run(): Promise; }