/** * Export everything from index.ts, but override the PDFiumLibrary class with a new one that uses a * base64-encoded WASM binary. Having a separate file for this is useful because bundlers do not need * to include the base64-encoded WASM binary in the main bundle when the user does not use the * base64-encoded WASM binary. */ export * from "./index"; import { PDFiumLibrary as _PDFiumLibrary } from "./library"; export declare class PDFiumLibrary extends _PDFiumLibrary { static init(options?: { wasmBinary?: ArrayBuffer; wasmUrl?: string; }): Promise<_PDFiumLibrary>; }