import type { McpContent, ContentBlock } from "./types.js"; /** * Transform MCP content types to Pi content blocks. * * Text blocks exceeding MAX_MCP_TEXT_LENGTH are truncated to prevent * context-window overflow in downstream LLM calls. */ export declare function transformMcpContent(content: McpContent[]): ContentBlock[]; //# sourceMappingURL=tool-registrar.d.ts.map