import * as z from "zod/v4-mini"; import { AlertSettings, AlertSettings$Outbound } from "./alert-settings.js"; import { AutoTopup, AutoTopup$Outbound } from "./auto-topup.js"; import { WalletConfig, WalletConfig$Outbound } from "./wallet-config.js"; export type UpdateWalletRequest = { alertSettings?: AlertSettings | undefined; autoTopup?: AutoTopup | undefined; config?: WalletConfig | undefined; description?: string | undefined; metadata?: { [k: string]: string; } | undefined; name?: string | undefined; }; /** @internal */ export type UpdateWalletRequest$Outbound = { alert_settings?: AlertSettings$Outbound | undefined; auto_topup?: AutoTopup$Outbound | undefined; config?: WalletConfig$Outbound | undefined; description?: string | undefined; metadata?: { [k: string]: string; } | undefined; name?: string | undefined; }; /** @internal */ export declare const UpdateWalletRequest$outboundSchema: z.ZodMiniType; export declare function updateWalletRequestToJSON(updateWalletRequest: UpdateWalletRequest): string; //# sourceMappingURL=update-wallet-request.d.ts.map