export type McpContent = { type: "text"; text: string; }; export type McpResponse = { content: McpContent[]; }; export declare function formatInnerMonologueResponse(thought: string): McpResponse;