import type { Confidence } from './types.js'; export interface SemanticContext { confidence: Confidence; context: 'code' | 'string' | 'comment' | 'template' | 'test'; inTestFile: boolean; } /** * Parse a TypeScript/JavaScript file and analyze semantic context at a specific line */ export declare function analyzeSemanticContext(filePath: string, lineNumber: number, pattern?: string): Promise; /** * Batch analyze multiple findings */ export declare function batchAnalyzeSemanticContext(findings: Array<{ file: string; line?: number; pattern?: string; }>): Promise; //# sourceMappingURL=semantic-analysis.d.ts.map