interface McpContent {
    type: string;
    text: string;
    encoding?: 'base64' | 'utf8';
}
interface McpToolResponse {
    content: McpContent[];
}
export { McpContent, McpToolResponse };
