import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * Type of a wallet. * * @remarks * - `default`: The system-generated wallet automatically created when an account is granted the wallet capability. * - `general`: An additional, user-defined wallet created via API or Dashboard. */ export declare const WalletType: { readonly Default: "default"; readonly General: "general"; }; /** * Type of a wallet. * * @remarks * - `default`: The system-generated wallet automatically created when an account is granted the wallet capability. * - `general`: An additional, user-defined wallet created via API or Dashboard. */ export type WalletType = ClosedEnum; /** @internal */ export declare const WalletType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const WalletType$outboundSchema: z.ZodNativeEnum; //# sourceMappingURL=wallettype.d.ts.map