import { BaseCommand } from '@salesforce/b2c-tooling-sdk/cli'; /** * Default setup command - provides topic help and prompts to create an instance if none configured. * * - `b2c setup` with no instance configured (TTY): prompts to create one * - `b2c setup` with instance configured or non-TTY: shows topic help */ export default class SetupIndex extends BaseCommand { static description: string; static examples: string[]; run(): Promise; }