import { z } from "zod";
import { RohlikAPI } from "../rohlik-api.js";
export declare function createSearchProductsTool(createRohlikAPI: () => RohlikAPI): {
    name: string;
    definition: {
        title: string;
        description: string;
        inputSchema: {
            product_name: z.ZodString;
            limit: z.ZodDefault<z.ZodNumber>;
            favourite_only: z.ZodDefault<z.ZodBoolean>;
        };
    };
    handler: (args: {
        product_name: string;
        limit?: number;
        favourite_only?: boolean;
    }) => Promise<{
        content: {
            type: "text";
            text: string;
        }[];
        isError?: undefined;
    } | {
        content: {
            type: "text";
            text: string;
        }[];
        isError: boolean;
    }>;
};
//# sourceMappingURL=search-products.d.ts.map