import { ActionEvent, GoTo3DViewActionGoTo3DView, Parameter, ActionEventInterface } from "./../index";
export interface GoTo3DViewActionInterface extends ActionEventInterface {
    goTo3DView?: GoTo3DViewActionGoTo3DView;
}
export declare class GoTo3DViewAction extends ActionEvent implements GoTo3DViewActionInterface, Parameter {
    goTo3DView?: GoTo3DViewActionGoTo3DView;
    constructor(data: any);
    static getGoTo3DViewDescription(): string;
    static fromJson(data: any): GoTo3DViewAction;
    toJson(): any;
    clone(): GoTo3DViewAction;
}
