import type { FileRecord, CodeChunk } from "../types/index.js"; export interface OverviewEntry { file: FileRecord; chunks: CodeChunk[]; } export declare function formatOverview(entries: OverviewEntry[], tokenBudget: number, basePath?: string, depth?: 1 | 2 | 3 | 4): string; export declare function formatLookup(chunks: (CodeChunk & { filePath?: string; pagerank?: number; fileLanguage?: string; })[], files: Map, tokenBudget: number, opts?: { symbol?: string; }): string;