import { TActivityType, TGoto, TIXgoto, TPgoto } from "../SharedTypes"; export declare class Activity { private _name; private _type; private _goto; private _xgoto; private _igoto; private _pgoto; private _activities; private _condition; constructor(name?: string, type?: TActivityType, goto?: TGoto, xgoto?: TIXgoto, pgoto?: TPgoto, activities?: Activity[], igoto?: TIXgoto, condition?: string); get name(): string; set name(aName: string); get type(): TActivityType; set type(aType: TActivityType); get goto(): TGoto; set goto(aGoto: TGoto); get xgoto(): TIXgoto; set xgoto(aXgoto: TIXgoto); get igoto(): TIXgoto; set igoto(aIgoto: TIXgoto); get pgoto(): TPgoto; set pgoto(aPgoto: TPgoto); get activities(): Activity[]; set activities(aActivities: Activity[]); get condition(): string; set condition(aCondition: string); get $id(): string; }