import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export declare const TokenCurrencyAssetTypeAtType: { readonly CurrencyToken: "CURRENCY_TOKEN"; }; export type TokenCurrencyAssetTypeAtType = ClosedEnum; export type TokenCurrencyAssetType = { atType: TokenCurrencyAssetTypeAtType; /** * Blockchain contract address in Union format `ETHEREUM:${token}` */ contract: string; }; /** @internal */ export declare const TokenCurrencyAssetTypeAtType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const TokenCurrencyAssetTypeAtType$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace TokenCurrencyAssetTypeAtType$ { /** @deprecated use `TokenCurrencyAssetTypeAtType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly CurrencyToken: "CURRENCY_TOKEN"; }>; /** @deprecated use `TokenCurrencyAssetTypeAtType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly CurrencyToken: "CURRENCY_TOKEN"; }>; } /** @internal */ export declare const TokenCurrencyAssetType$inboundSchema: z.ZodType; /** @internal */ export type TokenCurrencyAssetType$Outbound = { "@type": string; contract: string; }; /** @internal */ export declare const TokenCurrencyAssetType$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace TokenCurrencyAssetType$ { /** @deprecated use `TokenCurrencyAssetType$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TokenCurrencyAssetType$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `TokenCurrencyAssetType$Outbound` instead. */ type Outbound = TokenCurrencyAssetType$Outbound; } export declare function tokenCurrencyAssetTypeToJSON(tokenCurrencyAssetType: TokenCurrencyAssetType): string; export declare function tokenCurrencyAssetTypeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=tokencurrencyassettype.d.ts.map