export type ValueOf = T[keyof T]; /** * security context under which the guest application is running */ export declare enum SecurityContext { /** * application is using the same security context as the host */ USER = "USER", /** * application is using the partner security context */ PARTNER = "PARTNER" }