/** * Export everything from index.ts, but override the PDFiumLibrary class with a new one that uses a * wasm binary from a CDN */ export * from "./index"; import { PDFiumLibrary as _PDFiumLibrary } from "./library"; export declare class PDFiumLibrary extends _PDFiumLibrary { static _cache: ArrayBuffer | null; static init(options?: { disableCDNWarning?: boolean; }): Promise<_PDFiumLibrary>; }