import type { ExecutorInput, ExecutorResult } from './types'; /** * Execute a task using the OpenCode CLI. * * To bridge models (like Big Pickle) that can't use OpenCode's native MCP * tool interface, we write a `handrails-tool` bash script into the project * that calls the Handrails API directly. The model can invoke it via its * native `bash` tool: `./handrails-tool searchContacts search=Jon` */ export declare function executeWithOpenCode(input: ExecutorInput): Promise;