export declare class Wizard { private static instance; private readonly BOX_WIDTH; private constructor(); static getInstance(): Wizard; /** * Create a simple box with title using double-line border style */ private createBox; /** * Display operation hints */ private showOperationHints; /** * Prompt wrapper that shows operation hints */ private promptWithHints; private printBanner; private resetScreen; runFirstTimeSetup(): Promise; configLanguage(): Promise; configPlan(): Promise; configApiKey(): Promise; selectAndConfigureTool(): Promise; configureTool(toolName: string): Promise; showMainMenu(): Promise; showToolMenu(toolName: string): Promise; startTool(toolName: string): Promise; loadGLMConfig(toolName: string): Promise; unloadGLMConfig(toolName: string): Promise; showMCPMenu(toolName: string): Promise; showMCPDetail(toolName: string, mcpId: string): Promise; showOtherMCPDetail(toolName: string, mcpId: string): Promise; installAllPresetMCPs(toolName: string): Promise; } export declare const wizard: Wizard;