export interface CodebaseMapConfig { include?: string[]; exclude?: string[]; format?: 'auto' | 'json' | 'dsl' | 'graph' | 'markdown' | 'tree' | string; } export interface CodebaseMapOptions { include?: string[] | undefined; exclude?: string[] | undefined; format?: string | undefined; projectRoot: string; } export interface CodebaseMapResult { success: boolean; output?: string; error?: Error; } export declare function generateCodebaseMap(options: CodebaseMapOptions): Promise; export declare function updateCodebaseMap(filePath: string, projectRoot: string): Promise; //# sourceMappingURL=codebase-map-utils.d.ts.map