import type { IActivityHandler } from "../../IActivityHandler"; /** Describes the outputs of the Get Browser Info activity. */ export interface GetBrowserInfoOutputs { /** @description The URL of the browser. */ url: string; /** @description The user agent string of the browser. */ userAgent: string; } export declare class GetBrowserInfo implements IActivityHandler { static readonly action = "gcx:wf:browser::GetBrowserInfo"; static readonly suite = "gcx:wf:builtin"; execute(): GetBrowserInfoOutputs; }