import { z } from 'zod';
/**
 * Convert Zod schema to JSON Schema for MCP compatibility
 */
export declare function convertZodToJsonSchema(zodSchema: z.ZodType<any, any>): any;
/**
 * Convert a tool definition with Zod schema to MCP-compatible format
 */
export declare function convertToolSchema(tool: {
    name: string;
    description: string;
    inputSchema: z.ZodType<any, any>;
}): {
    name: string;
    description: string;
    inputSchema: any;
};
//# sourceMappingURL=schema-converter.d.ts.map