export interface WorkflowMetadata { /** * The name of the workflow. */ workflowName: string; /** * Unique identifier for the workflow run. */ workflowRunId: string; /** * Timestamp when the workflow run started. */ workflowStartedAt: Date; /** * The URL where the workflow can be triggered. */ url: string; } export declare const WORKFLOW_CONTEXT_SYMBOL: unique symbol; export declare function getWorkflowMetadata(): WorkflowMetadata; //# sourceMappingURL=get-workflow-metadata.d.ts.map