import * as z from "zod/v3"; export type PaymentMethodStoredCard = { /** * Set to `id` to use a stored card. */ method?: "id" | undefined; /** * The ID of the stored card to use. */ id: string; }; /** @internal */ export type PaymentMethodStoredCard$Outbound = { method: "id"; id: string; }; /** @internal */ export declare const PaymentMethodStoredCard$outboundSchema: z.ZodType; export declare function paymentMethodStoredCardToJSON(paymentMethodStoredCard: PaymentMethodStoredCard): string; //# sourceMappingURL=paymentmethodstoredcard.d.ts.map