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 EthEthereumAssetTypeAtType: { readonly Eth: "ETH"; }; export type EthEthereumAssetTypeAtType = ClosedEnum; export type EthEthereumAssetType = { atType: EthEthereumAssetTypeAtType; blockchain?: Blockchain | undefined; }; /** @internal */ export declare const EthEthereumAssetTypeAtType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const EthEthereumAssetTypeAtType$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 EthEthereumAssetTypeAtType$ { /** @deprecated use `EthEthereumAssetTypeAtType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Eth: "ETH"; }>; /** @deprecated use `EthEthereumAssetTypeAtType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Eth: "ETH"; }>; } /** @internal */ export declare const EthEthereumAssetType$inboundSchema: z.ZodType; /** @internal */ export type EthEthereumAssetType$Outbound = { "@type": string; blockchain?: string | undefined; }; /** @internal */ export declare const EthEthereumAssetType$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 EthEthereumAssetType$ { /** @deprecated use `EthEthereumAssetType$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EthEthereumAssetType$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EthEthereumAssetType$Outbound` instead. */ type Outbound = EthEthereumAssetType$Outbound; } export declare function ethEthereumAssetTypeToJSON(ethEthereumAssetType: EthEthereumAssetType): string; export declare function ethEthereumAssetTypeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ethethereumassettype.d.ts.map