import type { KlawConfig } from "../config/types.klaw.js"; import type { DocumentExtractedImage, DocumentExtractionResult } from "../plugins/document-extractor-types.js"; export type PdfExtractedImage = DocumentExtractedImage; export type PdfExtractedContent = DocumentExtractionResult; export declare function extractPdfContent(params: { buffer: Buffer; maxPages: number; maxPixels: number; minTextChars: number; pageNumbers?: number[]; config?: KlawConfig; onImageExtractionError?: (error: unknown) => void; }): Promise;