import * as z from "zod/v3"; export type DlocalWalletOptions = { /** * 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; }; /** @internal */ export type DlocalWalletOptions$Outbound = { name?: string | null | undefined; email?: string | null | undefined; token?: string | null | undefined; username?: string | null | undefined; verify?: boolean | null | undefined; }; /** @internal */ export declare const DlocalWalletOptions$outboundSchema: z.ZodType; export declare function dlocalWalletOptionsToJSON(dlocalWalletOptions: DlocalWalletOptions): string; //# sourceMappingURL=dlocalwalletoptions.d.ts.map