declare namespace _exports {
    export { PdfToHtmlOptions };
}
declare const _exports: Record<keyof PdfToHtmlOptions, import("../index").OptionDetails>;
export = _exports;
type PdfToHtmlOptions = {
    /**
     * Generate complex output.
     */
    complexOutput?: boolean | undefined;
    /**
     * Use data URLs instead of external images in HTML.
     */
    dataUrls?: boolean | undefined;
    /**
     * Exchange .pdf links with .html.
     */
    exchangePdfLinks?: boolean | undefined;
    /**
     * Force hidden text extraction.
     */
    extractHidden?: boolean | undefined;
    /**
     * First page to print.
     */
    firstPageToConvert?: number | undefined;
    /**
     * Outputs the font name without any substitutions.
     */
    fontFullName?: boolean | undefined;
    /**
     * Ignore images.
     */
    ignoreImages?: boolean | undefined;
    /**
     * Image file format for Splash output (JPG or PNG).
     * If `options.complexOutput` is enabled, but `options.imageFormat` is not specified, PNG will be assumed.
     */
    imageFormat?: "JPG" | "PNG" | undefined;
    /**
     * Last page to print.
     */
    lastPageToConvert?: number | undefined;
    /**
     * Override document DRM settings.
     */
    noDrm?: boolean | undefined;
    /**
     * Generate no frames. Not supported in complex output mode.
     */
    noFrames?: boolean | undefined;
    /**
     * Do not merge paragraphs.
     */
    noMergeParagraph?: boolean | undefined;
    /**
     * Do not round coordinates
     * (with XML output only).
     */
    noRoundedCoordinates?: boolean | undefined;
    /**
     * Sets the encoding to use for text output.
     * This defaults to `'UTF-8'`.
     */
    outputEncoding?: string | undefined;
    /**
     * Owner password (for encrypted files).
     */
    ownerPassword?: string | undefined;
    /**
     * Print copyright and version info.
     */
    printVersionInfo?: boolean | undefined;
    /**
     * Do not print any messages or errors.
     */
    quiet?: boolean | undefined;
    /**
     * Generate single HTML that includes all pages.
     */
    singlePage?: boolean | undefined;
    /**
     * Use standard output.
     */
    stdout?: boolean | undefined;
    /**
     * User password (for encrypted files).
     */
    userPassword?: string | undefined;
    /**
     * Adjust the word break threshold percent.
     * Default is `10`. Word break occurs when distance between two adjacent characters is greater
     * than this percent of character height.
     */
    wordBreakThreshold?: number | undefined;
    /**
     * Output for XML post-processing.
     */
    xmlOutput?: boolean | undefined;
    /**
     * Zoom the PDF document (default `1.5`).
     */
    zoom?: number | undefined;
};
