export interface McpToolCallbackExtra {
    [key: string]: unknown;
}
export interface McpRichContentTextItem {
    type: "text";
    text: string;
    [key: string]: unknown;
}
export type McpToolReturnContent = Array<McpRichContentTextItem>;
export interface McpToolReturnValue {
    content: McpToolReturnContent;
    _meta?: {
        [key: string]: unknown;
    };
    structuredContent?: {
        [key: string]: unknown;
    };
    isError?: boolean;
    [key: string]: unknown;
}
//# sourceMappingURL=types.d.ts.map