/** * Init Command - Initialize .smartergpt/ workspace * * Zero-to-value onboarding: one command to get from zero to working Lex setup. */ export interface InitOptions { force?: boolean; json?: boolean; promptsDir?: string; policy?: boolean; instructions?: boolean; mcp?: boolean; yes?: boolean; interactive?: boolean; } export interface InitResult { success: boolean; workspaceDir: string; message: string; filesCreated: string[]; modulesDiscovered?: number; instructionsCreated?: boolean; mcpConfigCreated?: boolean; projectType?: string; databaseInitialized?: boolean; mcpGuidanceShown?: boolean; } /** * Initialize .smartergpt/ workspace with prompts and policy * Enhanced for zero-to-value onboarding */ export declare function init(options?: InitOptions): Promise;