import * as z from "zod/v3"; export type MattildaTapiOptions = { /** * Defines the date at which the payment will expire if not completed. Must be provided in ISO 8601 format `(YYYY-MM-DD`). If not specified, it defaults to 7 days in the future from the current date. */ paymentMethodExpiresAt?: string | null | undefined; }; /** @internal */ export type MattildaTapiOptions$Outbound = { payment_method_expires_at?: string | null | undefined; }; /** @internal */ export declare const MattildaTapiOptions$outboundSchema: z.ZodType; export declare function mattildaTapiOptionsToJSON(mattildaTapiOptions: MattildaTapiOptions): string; //# sourceMappingURL=mattildatapioptions.d.ts.map