import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreateWallet = { /** * Name of the wallet. */ name: string; /** * Description of the wallet. */ description?: string | undefined; /** * Free-form key-value pair list. Useful for storing information that is not captured elsewhere. */ metadata?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const CreateWallet$inboundSchema: z.ZodType; /** @internal */ export type CreateWallet$Outbound = { name: string; description?: string | undefined; metadata?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const CreateWallet$outboundSchema: z.ZodType; export declare function createWalletToJSON(createWallet: CreateWallet): string; export declare function createWalletFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createwallet.d.ts.map