import { BaseCommand } from '@salesforce/b2c-tooling-sdk/cli'; interface DefaultConfigSetResponse { defaultConfigPath: string; settingsPath: string; } /** Set the shared global dw.json configuration file. */ export default class SetupDefaultConfigSet extends BaseCommand { static args: { path: import("@oclif/core/interfaces").Arg>; }; static description: string; static enableJsonFlag: boolean; static examples: string[]; run(): Promise; } export {};