import type { IActivityHandler } from "../../IActivityHandler"; /** * Defines outputs from the GetApplicationInfo activity. * @product This is intended for internal use only within VertiGIS Studio products. */ export interface GetApplicationInfoOutputs { /** @description The name of the application. */ name: string; /** @description The version of the application. */ version?: string; /** @description Additional application information that is specific to the host application. */ info: any; } export declare class GetApplicationInfo implements IActivityHandler { static readonly action = "gcx:wf:app::GetApplicationInfo"; static readonly suite = "gcx:wf:builtin"; execute(): GetApplicationInfoOutputs; }