/** * Analyze Command * * Indexes a repository and stores the knowledge graph in .gitnexus/ */ export interface AnalyzeOptions { force?: boolean; embeddings?: boolean; extensions?: string; scope?: string; repoAlias?: string; csharpDefineCsproj?: string; reuseOptions?: boolean; skills?: boolean; verbose?: boolean; } export declare const analyzeCommand: (inputPath?: string, options?: AnalyzeOptions) => Promise; export declare function buildPipelineRunOptionsForAnalyze(resolvedOptions: { includeExtensions: string[]; scopeRules: string[]; csharpDefineCsproj?: string; }, options?: AnalyzeOptions): { includeExtensions: string[]; scopeRules: string[]; csharpDefineCsproj?: string; };