import { flags, SfdxCommand } from '@salesforce/command'; import { AnyJson } from '@salesforce/ts-types'; export default class SwapAndDeploy extends SfdxCommand { static description: string; static examples: string[]; static args: any[]; protected static flagsConfig: { unpackaged: flags.Discriminated>; }; protected static requiresUsername: boolean; protected static requiresProject: boolean; run(): Promise; }