/// <reference types="node" />
import { IGetMetaResponse } from "./types";
declare global {
    interface Window {
        PDFNet: any;
        CoreControls: any;
    }
}
declare class PDFparser {
    readonly document: any;
    constructor(document?: Buffer);
    initialize: (licenseKey: string) => Promise<void>;
    getPDFMeta: () => Promise<IGetMetaResponse>;
}
export default PDFparser;