import { type AgentExecutionBoundary } from "@termfleet/core/internal/agent-launch.js"; export type ExecutionBoundaryAdapter = { wrapCommand(boundary: AgentExecutionBoundary, command: string): string; }; export declare function resolveExecutionBoundaryAdapter(value?: string | undefined): ExecutionBoundaryAdapter | undefined;