/** * MicroPDF - Main API */ /** * Options for MicroPDF initialization */ export interface MicroPDFOptions { /** * Whether to allow mock implementation when native addon is not available * @default true */ allowMock?: boolean; } /** * Get the MicroPDF library version */ export declare function getVersion(): string; /** * Main MicroPDF class */ export declare class MicroPDF { private static initialized; /** * Initialize MicroPDF */ static init(options?: MicroPDFOptions): void; /** * Check if MicroPDF is using the mock implementation */ static get isMock(): boolean; /** * Get the library version */ static get version(): string; /** * Check if initialized */ static get isInitialized(): boolean; } //# sourceMappingURL=micropdf.d.ts.map