import { Parameter } from "./../index";
export interface AnnotationSelectionInterface {
    index?: number;
    name?: string;
    page?: number;
}
export declare class AnnotationSelection implements AnnotationSelectionInterface, Parameter {
    index?: number;
    name?: string;
    page?: number;
    constructor(data: any);
    static getIndexDefault(): number;
    static getIndexDescription(): string;
    static getIndexMin(): number;
    static getNameDefault(): string;
    static getNameDescription(): string;
    static getPageDefault(): number;
    static getPageDescription(): string;
    static getPageMin(): number;
    static fromJson(data: any): AnnotationSelection;
    toJson(): any;
    clone(): AnnotationSelection;
}
