import { ExtractionImageFormat, Parameter, ExtractionFileFormat } from "./../index";
export interface ExtractionImagesInterface {
    fallbackFormat?: ExtractionImageFormat;
    fileFormat?: ExtractionFileFormat;
    fileNameTemplate?: string;
    folderNameTemplate?: string;
    pages?: string;
}
export declare class ExtractionImages implements ExtractionImagesInterface, Parameter {
    fallbackFormat?: ExtractionImageFormat;
    fileFormat?: ExtractionFileFormat;
    fileNameTemplate?: string;
    folderNameTemplate?: string;
    pages?: string;
    constructor(data: any);
    static getFallbackFormatDefault(): ExtractionImageFormat;
    static getFallbackFormatDescription(): string;
    static getFileFormatDefault(): ExtractionFileFormat;
    static getFileFormatDescription(): string;
    static getFileNameTemplateDefault(): string;
    static getFileNameTemplateDescription(): string;
    static getFolderNameTemplateDefault(): string;
    static getFolderNameTemplateDescription(): string;
    static getPagesDefault(): string;
    static getPagesDescription(): string;
    static fromJson(data: any): ExtractionImages;
    toJson(): any;
    clone(): ExtractionImages;
}
