import { DestinationEvent, DestinationEventInterface, Parameter, FitRectangleDestinationFitRectangle } from "./../index";
export interface FitRectangleDestinationInterface extends DestinationEventInterface {
    fitRectangle?: FitRectangleDestinationFitRectangle;
}
export declare class FitRectangleDestination extends DestinationEvent implements FitRectangleDestinationInterface, Parameter {
    fitRectangle?: FitRectangleDestinationFitRectangle;
    constructor(data: any);
    static getFitRectangleDescription(): string;
    static fromJson(data: any): FitRectangleDestination;
    toJson(): any;
    clone(): FitRectangleDestination;
}
