import { DestinationEvent, DestinationEventInterface, Parameter, ZoomDestinationZoomPage } from "./../index";
export interface ZoomDestinationInterface extends DestinationEventInterface {
    zoomPage?: ZoomDestinationZoomPage;
}
export declare class ZoomDestination extends DestinationEvent implements ZoomDestinationInterface, Parameter {
    zoomPage?: ZoomDestinationZoomPage;
    constructor(data: any);
    static getZoomPageDescription(): string;
    static fromJson(data: any): ZoomDestination;
    toJson(): any;
    clone(): ZoomDestination;
}
