import { Parameter, PageBox } from "./../index";
export interface SelectionBoxInterface {
    box?: PageBox;
    pages?: string;
}
export declare class SelectionBox implements SelectionBoxInterface, Parameter {
    box?: PageBox;
    pages?: string;
    constructor(data: any);
    static getBoxDefault(): PageBox;
    static getBoxDescription(): string;
    static getPagesDefault(): string;
    static getPagesDescription(): string;
    static fromJson(data: any): SelectionBox;
    toJson(): any;
    clone(): SelectionBox;
}
