import { type WorkflowContext } from '@agenticvault/agentic-vault/protocols'; import { type OpenClawPluginConfig } from './types.js'; /** * Build a WorkflowContext from OpenClaw plugin configuration. * Returns a new instance on each call — caller manages lifecycle. */ export declare function buildContext(config: OpenClawPluginConfig): WorkflowContext;