import { BaseCommand } from '@salesforce/b2c-tooling-sdk/cli'; interface DefaultConfigUnsetResponse { defaultConfigPath: null; removed: boolean; settingsPath: string; } /** Remove the shared global dw.json setting. */ export default class SetupDefaultConfigUnset extends BaseCommand { static description: string; static enableJsonFlag: boolean; static examples: string[]; run(): Promise; } export {};