/** * Analyze AST subcommand * Heuristic (regex-based) code analysis — there is no AST/tree-sitter parser here */ import type { Command } from '../types.js'; /** * Helper: Truncate file path for display */ export declare function truncatePathAst(filePath: string, maxLen?: number): string; /** * Helper: Format complexity value with color coding */ export declare function formatComplexityValueAst(value: number): string; /** * Helper: Get type marker for symbols */ export declare function getTypeMarkerAst(type: string): string; /** * Helper: Get complexity rating text */ export declare function getComplexityRatingAst(value: number): string; /** * AST analysis subcommand */ export declare const astCommand: Command; //# sourceMappingURL=analyze-ast.d.ts.map