export declare function createShoppingScenariosTool(): {
    name: string;
    definition: {
        title: string;
        description: string;
        inputSchema: {};
    };
    handler: () => Promise<{
        content: {
            type: "text";
            text: string;
        }[];
    }>;
};
//# sourceMappingURL=shopping-scenarios.d.ts.map