/** * Model to represent the system * @export * @class Context */ export declare class Context { /** * @type {string} * @memberof Context */ id?: string | undefined; /** * @type {string} * @memberof Context */ system?: string | undefined; }