import type { IActivityHandler } from "../../IActivityHandler"; /** * Defines outputs from the GetUserInfo activity. * @product This is intended for internal use only within VertiGIS Studio products. */ export interface GetUserInfoOutputs { /** @description The login name of the currently logged-in user. */ username: string; /** @description The email address of the currently logged-in user. */ email: string; /** @description The security roles that the currently logged-in user belongs to. */ roles: string[]; } export declare class GetUserInfo implements IActivityHandler { static readonly action = "gcx:wf:app::GetUserInfo"; static readonly suite = "gcx:wf:builtin"; execute(): GetUserInfoOutputs; }