import { z } from "zod"; import { StripeService } from "../services/stripe.service"; export declare const RefundWriteToolSchemas: { create_refund: { description: string; schema: z.ZodObject<{ payment_intent_id: z.ZodString; amount: z.ZodOptional; reason: z.ZodOptional; }, z.core.$strip>; annotations: { title: string; readOnlyHint: boolean; destructiveHint: boolean; idempotentHint: boolean; openWorldHint: boolean; }; }; }; export declare class RefundWriteTools { private stripeService; constructor(stripeService: StripeService); create_refund(args: z.infer): Promise; }