import { RohlikAPI } from "../rohlik-api.js";
export declare function createDeliverySlotsTool(createRohlikAPI: () => RohlikAPI): {
    name: string;
    definition: {
        title: string;
        description: string;
        inputSchema: {};
    };
    handler: () => Promise<{
        content: {
            type: "text";
            text: string;
        }[];
        isError?: undefined;
    } | {
        content: {
            type: "text";
            text: string;
        }[];
        isError: boolean;
    }>;
};
//# sourceMappingURL=delivery-slots.d.ts.map