import { BaseCommand } from '@salesforce/b2c-tooling-sdk/cli'; interface DefaultConfigGetResponse { defaultConfigPath: null | string; exists: boolean; settingsPath: string; } /** Show the shared global dw.json configuration file. */ export default class SetupDefaultConfigGet extends BaseCommand { static description: string; static enableJsonFlag: boolean; static examples: string[]; run(): Promise; } export {};