export interface ProjectScannerOptions { root: string; extensions?: string[]; ignore?: string[]; maxFiles?: number; maxDepth?: number; targetFile?: string; targetComponent?: string; stackTrace?: string; errorMessage?: string; } export interface ProjectScannerResult { files: string[]; truncated: boolean; truncatedReason?: string; stackTraceFiles?: string[]; errorKeywords?: string[]; } export declare function scanProject(options: ProjectScannerOptions): ProjectScannerResult; //# sourceMappingURL=project-scanner.d.ts.map