import { DestinationEvent, DestinationEventInterface, FitHeightDestinationFitHeight, Parameter } from "./../index";
export interface FitHeightDestinationInterface extends DestinationEventInterface {
    fitHeight?: FitHeightDestinationFitHeight;
}
export declare class FitHeightDestination extends DestinationEvent implements FitHeightDestinationInterface, Parameter {
    fitHeight?: FitHeightDestinationFitHeight;
    constructor(data: any);
    static getFitHeightDescription(): string;
    static fromJson(data: any): FitHeightDestination;
    toJson(): any;
    clone(): FitHeightDestination;
}
