import { IXgoto } from "./Process/IXgoto"; export declare type TrueOrStr = true | string; export declare type KeyObjDict = { [key: string]: {}; }; export declare type KeyArrDict = { [key: string]: T[]; }; export declare type KeyStrDict = { [key: string]: string; }; export declare type KeyNumDict = { [key: string]: number; }; export declare type KeyTDict = { [key: string]: T; }; export declare type KeyAnyDict = { [key: string]: any; }; export declare type StrOrStrArr = string | string[]; export declare const ActivityType: readonly ["sub", "pgw", "igw", "xgw", "task", "human", "serv", "send", "receive", "manual", "busin", "script", "call", "inthrow", "inmcatch", "inmthrow", "intimer", "inescal", "incond", "incomp", "inscatch", "insthrow"]; export declare type TActivityType = typeof ActivityType[number]; export declare type TGoto = StrOrStrArr | TIXgoto; export declare type TPgoto = string[]; export declare type TIXgoto = IXgoto[];