import { ZodArray, ZodBoolean, ZodNullable, ZodObject, ZodOptional, ZodString } from "zod"; export type ZodWalletBalance = ZodObject<{ amount: ZodString; currency: ZodString; }>; export type ZodWallet = ZodObject<{ balance: ZodWalletBalance; created_date: ZodString; has_billing_details: ZodBoolean; id: ZodString; missing_billing_keys: ZodArray; }>; export type ZodWalletCreateForm = ZodObject<{ customerName: ZodOptional>; currency: ZodString; }>; export type WindowHapiValidationsWallet = { wallet: ZodNullable; walletForm: ZodWalletCreateForm; }; //# sourceMappingURL=validations.types.d.ts.map