import { Server } from '@modelcontextprotocol/sdk/server/index.js';
import { RequestMeta } from '@modelcontextprotocol/sdk/types.js';
export declare const convertToolDefinition: {
    name: string;
    description: string;
    inputSchema: import("zod-to-json-schema").JsonSchema7Type & {
        $schema?: string | undefined;
        definitions?: {
            [key: string]: import("zod-to-json-schema").JsonSchema7Type;
        } | undefined;
    };
};
export declare function handleConvertTool(server: Server, request: {
    params: {
        name: string;
        _meta?: RequestMeta;
        arguments?: any;
    };
}): Promise<{
    content: {
        [x: string]: unknown;
        type: "text";
        text: string;
    }[];
    isError?: undefined;
} | {
    isError: boolean;
    content: {
        [x: string]: unknown;
        type: "text";
        text: string;
    }[];
}>;
