import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { Blockchain } from "./blockchain.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export declare const NativeCurrencyAssetTypeAtType: { readonly CurrencyNative: "CURRENCY_NATIVE"; }; export type NativeCurrencyAssetTypeAtType = ClosedEnum; export type NativeCurrencyAssetType = { blockchain: Blockchain; /** * Blockchain contract address in Union format `ETHEREUM:${token}` */ contract?: string | undefined; atType: NativeCurrencyAssetTypeAtType; }; /** @internal */ export declare const NativeCurrencyAssetTypeAtType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const NativeCurrencyAssetTypeAtType$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 NativeCurrencyAssetTypeAtType$ { /** @deprecated use `NativeCurrencyAssetTypeAtType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly CurrencyNative: "CURRENCY_NATIVE"; }>; /** @deprecated use `NativeCurrencyAssetTypeAtType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly CurrencyNative: "CURRENCY_NATIVE"; }>; } /** @internal */ export declare const NativeCurrencyAssetType$inboundSchema: z.ZodType; /** @internal */ export type NativeCurrencyAssetType$Outbound = { blockchain: string; contract?: string | undefined; "@type": string; }; /** @internal */ export declare const NativeCurrencyAssetType$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 NativeCurrencyAssetType$ { /** @deprecated use `NativeCurrencyAssetType$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `NativeCurrencyAssetType$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `NativeCurrencyAssetType$Outbound` instead. */ type Outbound = NativeCurrencyAssetType$Outbound; } export declare function nativeCurrencyAssetTypeToJSON(nativeCurrencyAssetType: NativeCurrencyAssetType): string; export declare function nativeCurrencyAssetTypeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=nativecurrencyassettype.d.ts.map