import { z } from 'zod';
export declare const helloWorldTool: {
    name: string;
    description: string;
    parameters: z.ZodObject<{
        name: z.ZodOptional<z.ZodString>;
    }, "strip", z.ZodTypeAny, {
        name?: string | undefined;
    }, {
        name?: string | undefined;
    }>;
    execute: (params: {
        name?: string;
    }) => Promise<{
        content: {
            type: "text";
            text: string;
        }[];
    }>;
};
//# sourceMappingURL=helloWorld.d.ts.map