import { flags, SfdxCommand } from "@salesforce/command"; import { AnyJson } from "@salesforce/ts-types"; export default class OrgCompare extends SfdxCommand { static description: string; static examples: string[]; protected static requiresUsername: boolean; protected orgAuths: any[]; protected compareResults: {}; protected API_VERSION: string; protected static flagsConfig: { orgusernames: flags.Discriminated; mtype: flags.Discriminated; inputfilename: flags.Discriminated; }; getEntities: (mtype: string, authInfo: any, query: string, tooling?: boolean) => Promise; getConnectionDetails: (orgUserName: string) => Promise; infoMsg: (msg: any) => void; run(): Promise; }