declare namespace _exports {
    export { PdfImagesOptions };
}
declare const _exports: Record<keyof PdfImagesOptions, import("../index").OptionDetails>;
export = _exports;
type PdfImagesOptions = {
    /**
     * Write JPEG, JPEG2000, JBIG2, and CCITT images in their native format.
     * CMYK files are written as TIFF files. All other images are written as PNG files.
     */
    allFiles?: boolean | undefined;
    /**
     * Generate CCITT images as CCITT files.
     */
    ccittFile?: boolean | undefined;
    /**
     * Specifies the first page to convert.
     */
    firstPageToConvert?: number | undefined;
    /**
     * Specifies the last page to convert.
     */
    lastPageToConvert?: number | undefined;
    /**
     * Generate JBIG2 images as JBIG2 files.
     */
    jbig2File?: boolean | undefined;
    /**
     * Generate JPEG2000 images as JP2 files.
     */
    jpeg2000File?: boolean | undefined;
    /**
     * Generate JPEG images as JPEG files.
     */
    jpegFile?: boolean | undefined;
    /**
     * Instead of writing the images, list the
     * images along with various information for each image.
     * NOTE: Do not specify the `outputPrefix` with this option.
     */
    list?: boolean | undefined;
    /**
     * Include page numbers in output file names.
     */
    outputPageNumbers?: boolean | undefined;
    /**
     * Owner password (for encrypted files).
     */
    ownerPassword?: string | undefined;
    /**
     * Change the default output format to PNG.
     */
    pngFile?: boolean | undefined;
    /**
     * Print image filenames to stdout.
     */
    printFilenames?: boolean | undefined;
    /**
     * Print copyright and version info.
     */
    printVersionInfo?: boolean | undefined;
    /**
     * Do not print any messages or errors.
     */
    quiet?: boolean | undefined;
    /**
     * Change the default output format to TIFF.
     */
    tiffFile?: boolean | undefined;
    /**
     * Specify the user password for the PDF file.
     */
    userPassword?: string | undefined;
};
