import * as z from "zod/v3"; import { DlocalWalletOptions, DlocalWalletOptions$Outbound } from "./dlocalwalletoptions.js"; export type DlocalOptions = { /** * Passes `wallet` data to the dLocal API for those connectors that need it. */ wallet?: DlocalWalletOptions | null | undefined; }; /** @internal */ export type DlocalOptions$Outbound = { wallet?: DlocalWalletOptions$Outbound | null | undefined; }; /** @internal */ export declare const DlocalOptions$outboundSchema: z.ZodType; export declare function dlocalOptionsToJSON(dlocalOptions: DlocalOptions): string; //# sourceMappingURL=dlocaloptions.d.ts.map