import * as z from "zod/v3"; export type OxxoOptions = { /** * Defines a custom expiration time (unix time) after which Oxxo payment requests are cancelled */ paymentMethodExpiresAt?: number | null | undefined; /** * Approval URL that will receive a charge payment method reference. */ approvalUrl?: string | null | undefined; }; /** @internal */ export type OxxoOptions$Outbound = { payment_method_expires_at?: number | null | undefined; approval_url?: string | null | undefined; }; /** @internal */ export declare const OxxoOptions$outboundSchema: z.ZodType; export declare function oxxoOptionsToJSON(oxxoOptions: OxxoOptions): string; //# sourceMappingURL=oxxooptions.d.ts.map