import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { WalletConfigPriceType } from "./wallet-config-price-type.js"; export type WalletConfig = { /** * AllowedPriceTypes is a list of price types that are allowed for the wallet * * @remarks * nil means all price types are allowed */ allowedPriceTypes?: Array | undefined; }; /** @internal */ export declare const WalletConfig$inboundSchema: z.ZodMiniType; /** @internal */ export type WalletConfig$Outbound = { allowed_price_types?: Array | undefined; }; /** @internal */ export declare const WalletConfig$outboundSchema: z.ZodMiniType; export declare function walletConfigToJSON(walletConfig: WalletConfig): string; export declare function walletConfigFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=wallet-config.d.ts.map