/** * PDF parser for the ingestion engine. * * Uses pdf-parse (v2) to extract text, then applies heuristic section detection * (large text on its own line → heading, page breaks → section boundaries). */ import type { ParsedDocument } from "./types"; /** * Parse a PDF file into structured sections. * * Uses pdf-parse v2 API (PDFParse class with { data } constructor). */ export declare function parsePdf(filePath: string): Promise; //# sourceMappingURL=pdf-parser.d.ts.map