import type { PDFDocumentProxy } from "pdfjs-dist"; import type { EnterpriseAuditHandler } from "../types.js"; export type PdfSearchHandle = { open: () => void; destroy: () => void; }; export type PdfSearchGoToPage = (page: number, scrollBehavior?: ScrollBehavior) => void; export declare function attachPdfSearch(host: HTMLElement, pdfDoc: PDFDocumentProxy, onGoToPage: PdfSearchGoToPage, audit?: { fileName?: string; onEnterpriseEvent?: EnterpriseAuditHandler; }): Promise; //# sourceMappingURL=pdf-search.d.ts.map