import { AnyJson } from '@salesforce/ts-types'; import { flags } from '@salesforce/command'; import SfpowerkitCommand from '../../../sfpowerkitCommand'; export default class Applypatch extends SfpowerkitCommand { static description: string; static examples: string[]; protected static flagsConfig: { name: flags.Discriminated; loglevel: flags.Discriminated>; }; protected static requiresUsername: boolean; private folderPath; execute(): Promise; }