import { Parameter, ExtractionFileFormat } from "./../index";
export interface ExtractionParagraphsInterface {
    fileFormat?: ExtractionFileFormat;
    pages?: string;
}
export declare class ExtractionParagraphs implements ExtractionParagraphsInterface, Parameter {
    fileFormat?: ExtractionFileFormat;
    pages?: string;
    constructor(data: any);
    static getFileFormatDefault(): ExtractionFileFormat;
    static getFileFormatDescription(): string;
    static getPagesDefault(): string;
    static getPagesDescription(): string;
    static fromJson(data: any): ExtractionParagraphs;
    toJson(): any;
    clone(): ExtractionParagraphs;
}
