import { SfdxCommand } from '@salesforce/command'; import { AnyJson } from '@salesforce/ts-types'; export default class Deploy extends SfdxCommand { static description: string; static examples: any[]; static args: any[]; protected static flagsConfig: {}; protected static requiresUsername: boolean; protected static supportsDevhubUsername: boolean; protected static requiresProject: boolean; private runCmd; run(): Promise; }