import { BaseCommand } from '@salesforce/b2c-tooling-sdk/cli'; import type { ConfigSourceInfo, ResolvedB2CConfig } from '@salesforce/b2c-tooling-sdk/config'; /** * JSON output structure for the inspect command. */ interface SetupInspectResponse { config: Record; sources: ConfigSourceInfo[]; warnings?: string[]; } /** * Command to display resolved configuration. */ export default class SetupInspect extends BaseCommand { static aliases: string[]; static description: string; static enableJsonFlag: boolean; static examples: string[]; static flags: { unmask: import("@oclif/core/interfaces").BooleanFlag; 'account-manager-host': import("@oclif/core/interfaces").OptionFlag; 'cloud-origin': import("@oclif/core/interfaces").OptionFlag; 'log-level': import("@oclif/core/interfaces").OptionFlag<"trace" | "debug" | "info" | "warn" | "error" | "silent" | undefined, import("@oclif/core/interfaces").CustomOptions>; debug: import("@oclif/core/interfaces").BooleanFlag; json: import("@oclif/core/interfaces").BooleanFlag; jsonl: import("@oclif/core/interfaces").BooleanFlag; lang: import("@oclif/core/interfaces").OptionFlag; config: import("@oclif/core/interfaces").OptionFlag; instance: import("@oclif/core/interfaces").OptionFlag; 'project-directory': import("@oclif/core/interfaces").OptionFlag; 'extra-query': import("@oclif/core/interfaces").OptionFlag; 'extra-body': import("@oclif/core/interfaces").OptionFlag; 'extra-headers': import("@oclif/core/interfaces").OptionFlag; }; static hiddenAliases: string[]; protected loadConfiguration(): Promise; run(): Promise; /** * Build a map of field -> source name for display. */ private buildFieldSourceMap; /** * Print the configuration in human-readable format. */ private printConfig; /** * Render a section only when at least one field is configured. */ private renderOptionalSection; /** * Render a configuration section with fields. */ private renderSection; } export {};