import { SfdxCommand } from '@salesforce/command'; import { AnyJson } from "@salesforce/ts-types"; export default class Apex extends SfdxCommand { static description: string; static examples: string[]; protected static requiresUsername: boolean; protected static flagsConfig: {}; processQueryResults(results: any): { withSharing: any[]; withoutSharing: any[]; }; processQueryResultsForSOQLInjection(results: any): any[]; run(): Promise; }