import { Parameter } from "./../index";
export interface ClearToolboxAnnotationInterface {
    flatten?: boolean;
    pages?: string;
}
export declare class ClearToolboxAnnotation implements ClearToolboxAnnotationInterface, Parameter {
    flatten?: boolean;
    pages?: string;
    constructor(data: any);
    static getFlattenDefault(): boolean;
    static getFlattenDescription(): string;
    static getPagesDefault(): string;
    static getPagesDescription(): string;
    static fromJson(data: any): ClearToolboxAnnotation;
    toJson(): any;
    clone(): ClearToolboxAnnotation;
}
