declare namespace _exports {
    export { PdfFontsOptions };
}
declare const _exports: Record<keyof PdfFontsOptions, import("../index").OptionDetails>;
export = _exports;
type PdfFontsOptions = {
    /**
     * Specifies the first page to examine.
     */
    firstPageToExamine?: number | undefined;
    /**
     * Specifies the last page to examine.
     */
    lastPageToExamine?: number | undefined;
    /**
     * List the substitute fonts that Poppler
     * will use for non-embedded fonts.
     */
    listSubstitutes?: boolean | undefined;
    /**
     * Owner password (for encrypted files).
     */
    ownerPassword?: string | undefined;
    /**
     * Print copyright and version info.
     */
    printVersionInfo?: boolean | undefined;
    /**
     * User password (for encrypted files).
     */
    userPassword?: string | undefined;
};
