import { GoToDestinationActionGoTo, ActionEvent, Parameter, ActionEventInterface } from "./../index";
export interface GoToDestinationActionInterface extends ActionEventInterface {
    _goTo?: GoToDestinationActionGoTo;
}
export declare class GoToDestinationAction extends ActionEvent implements GoToDestinationActionInterface, Parameter {
    _goTo?: GoToDestinationActionGoTo;
    constructor(data: any);
    static getGoToDescription(): string;
    static fromJson(data: any): GoToDestinationAction;
    toJson(): any;
    clone(): GoToDestinationAction;
}
