import type { AgentTool } from "@mariozechner/pi-agent-core"; import { toToolDefinitions } from "../pi-tool-definition-adapter.js"; type AnyAgentTool = AgentTool; export declare function splitSdkTools(options: { tools: AnyAgentTool[]; sandboxEnabled: boolean; }): { customTools: ReturnType; }; export {};