import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type WalletTopupParams = { walletId: string; walletTransactionId?: string | undefined; }; /** @internal */ export declare const WalletTopupParams$inboundSchema: z.ZodMiniType; /** @internal */ export type WalletTopupParams$Outbound = { wallet_id: string; wallet_transaction_id?: string | undefined; }; /** @internal */ export declare const WalletTopupParams$outboundSchema: z.ZodMiniType; export declare function walletTopupParamsToJSON(walletTopupParams: WalletTopupParams): string; export declare function walletTopupParamsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=wallet-topup-params.d.ts.map