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