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