import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Status of a wallet. * * @remarks * - `active`: The wallet is available for use and has an enabled payment method. * - `closed`: The wallet is no longer active and the corresponding payment method has been disabled. */ export declare const WalletStatus: { readonly Active: "active"; readonly Closed: "closed"; }; /** * Status of a wallet. * * @remarks * - `active`: The wallet is available for use and has an enabled payment method. * - `closed`: The wallet is no longer active and the corresponding payment method has been disabled. */ export type WalletStatus = ClosedEnum; /** @internal */ export declare const WalletStatus$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const WalletStatus$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=walletstatus.d.ts.map