export interface ScanResult { content: string; fileCount: number; } export interface ScanOptions { ignore?: string[]; include?: string[]; } export declare function scanRepo(repoRoot: string, options?: ScanOptions): Promise; export declare function scanFiles(repoRoot: string, files: string[]): Promise;