import { ActionEvent, Parameter, ActionEventInterface, ThreadActionGoToThread } from "./../index";
export interface ThreadActionInterface extends ActionEventInterface {
    goToThread?: ThreadActionGoToThread;
}
export declare class ThreadAction extends ActionEvent implements ThreadActionInterface, Parameter {
    goToThread?: ThreadActionGoToThread;
    constructor(data: any);
    static getGoToThreadDescription(): string;
    static fromJson(data: any): ThreadAction;
    toJson(): any;
    clone(): ThreadAction;
}
