import * as z from "zod/v3"; import { DlocalUPIRecurringInfoOptions, DlocalUPIRecurringInfoOptions$Outbound } from "./dlocalupirecurringinfooptions.js"; export type DlocalUPIWalletOptions = { /** * Passes `wallet.name` to the dLocal API for those connectors that need it. */ name?: string | null | undefined; /** * Passes `wallet.email` to the dLocal API for those connectors that need it. */ email?: string | null | undefined; /** * Passes `wallet.token` to the dLocal API for those connectors that need it. */ token?: string | null | undefined; /** * Passes `wallet.username` to the dLocal API for those connectors that need it. */ username?: string | null | undefined; /** * Passes `wallet.verify` to the dLocal API for those connectors that need it. */ verify?: boolean | null | undefined; /** * Passes `wallet.recurring_info` to the dLocal API for those connectors that need it. */ recurringInfo?: DlocalUPIRecurringInfoOptions | null | undefined; }; /** @internal */ export type DlocalUPIWalletOptions$Outbound = { name?: string | null | undefined; email?: string | null | undefined; token?: string | null | undefined; username?: string | null | undefined; verify?: boolean | null | undefined; recurring_info?: DlocalUPIRecurringInfoOptions$Outbound | null | undefined; }; /** @internal */ export declare const DlocalUPIWalletOptions$outboundSchema: z.ZodType; export declare function dlocalUPIWalletOptionsToJSON(dlocalUPIWalletOptions: DlocalUPIWalletOptions): string; //# sourceMappingURL=dlocalupiwalletoptions.d.ts.map