import type { PDFDocumentProxy } from "pdfjs-dist"; export type PdfThumbnailsHandle = { show: () => void; hide: () => void; toggle: () => void; isVisible: () => boolean; setActivePage: (page: number) => void; destroy: () => void; }; export declare function attachPdfThumbnails(layout: HTMLElement, pdfDoc: PDFDocumentProxy, onSelectPage: (page: number) => void, shouldContinue?: () => boolean, initialVisible?: boolean): Promise; //# sourceMappingURL=pdf-thumbnails.d.ts.map