import { z } from "zod"; import { StripeService } from "../services/stripe.service"; export declare const ProductToolSchemas: { get_product: { description: string; schema: z.ZodObject<{ id: z.ZodString; }, z.core.$strip>; annotations: { readOnlyHint: boolean; }; }; list_products: { description: string; schema: z.ZodObject<{ limit: z.ZodDefault>; }, z.core.$strip>; annotations: { readOnlyHint: boolean; }; }; get_price: { description: string; schema: z.ZodObject<{ id: z.ZodString; }, z.core.$strip>; annotations: { readOnlyHint: boolean; }; }; list_prices: { description: string; schema: z.ZodObject<{ limit: z.ZodDefault>; }, z.core.$strip>; annotations: { readOnlyHint: boolean; }; }; }; export declare class ProductTools { private stripeService; constructor(stripeService: StripeService); get_product(args: z.infer): Promise; list_products(args: z.infer): Promise; get_price(args: z.infer): Promise; list_prices(args: z.infer): Promise; }