import { DestinationEvent, Parameter } from "./../index";
export interface GoToDestinationActionGoToInterface {
    destination?: DestinationEvent;
}
export declare class GoToDestinationActionGoTo implements GoToDestinationActionGoToInterface, Parameter {
    destination?: DestinationEvent;
    constructor(data: any);
    static getDestinationDescription(): string;
    static fromJson(data: any): GoToDestinationActionGoTo;
    toJson(): any;
    clone(): GoToDestinationActionGoTo;
}
