import * as z from "zod/v3"; import { DlocalPIXSubscriptionOptions, DlocalPIXSubscriptionOptions$Outbound } from "./dlocalpixsubscriptionoptions.js"; export type DlocalPIXOptions = { /** * Passes `subscription` data to the dLocal API for those connectors that need it. */ subscription?: DlocalPIXSubscriptionOptions | null | undefined; /** * Defines scheduled payment start date. Must be provided in ISO 8601 format `(YYYY-MM-DD`). If not specified, The default is 2 days in the future. */ scheduledDate?: string | null | undefined; }; /** @internal */ export type DlocalPIXOptions$Outbound = { subscription?: DlocalPIXSubscriptionOptions$Outbound | null | undefined; scheduled_date?: string | null | undefined; }; /** @internal */ export declare const DlocalPIXOptions$outboundSchema: z.ZodType; export declare function dlocalPIXOptionsToJSON(dlocalPIXOptions: DlocalPIXOptions): string; //# sourceMappingURL=dlocalpixoptions.d.ts.map