interface WorkspaceConfig { projectPath: string; projectName: string; techStack?: { language?: string; framework?: string; uiLibrary?: string; testFramework?: string; }; } interface InitializationResult { success: boolean; filesCreated: string[]; configuration: { templatePath: string; contextPath: string; memoryPath: string; context7Path: string; }; nextSteps: string[]; message: string; } export declare function initializeAgentWorkspace(config: WorkspaceConfig): Promise; export {}; //# sourceMappingURL=initialize-workspace.d.ts.map