import { Parameter } from "./../index";
export interface FitBoundingBoxDestinationFitBoundingBoxInterface {
    page?: number;
}
export declare class FitBoundingBoxDestinationFitBoundingBox implements FitBoundingBoxDestinationFitBoundingBoxInterface, Parameter {
    page?: number;
    constructor(data: any);
    static getPageDefault(): number;
    static getPageDescription(): string;
    static getPageMin(): number;
    static fromJson(data: any): FitBoundingBoxDestinationFitBoundingBox;
    toJson(): any;
    clone(): FitBoundingBoxDestinationFitBoundingBox;
}
