import type { PdfChunk } from "./types.js"; /** * Extract text from a PDF file and split into page-based chunks. */ export declare function parsePdf(pdfPath: string, pagesPerChunk?: number): Promise; /** * Quick text extraction without chunking (for small PDFs). */ export declare function extractFullText(pdfPath: string): Promise; //# sourceMappingURL=pdf-parser.d.ts.map