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