import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { AssetType, AssetType$Outbound } from "./assettype.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type EthOrderFormAsset = { assetType: AssetType; value: string; }; /** @internal */ export declare const EthOrderFormAsset$inboundSchema: z.ZodType; /** @internal */ export type EthOrderFormAsset$Outbound = { assetType: AssetType$Outbound; value: string; }; /** @internal */ export declare const EthOrderFormAsset$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 EthOrderFormAsset$ { /** @deprecated use `EthOrderFormAsset$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EthOrderFormAsset$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EthOrderFormAsset$Outbound` instead. */ type Outbound = EthOrderFormAsset$Outbound; } export declare function ethOrderFormAssetToJSON(ethOrderFormAsset: EthOrderFormAsset): string; export declare function ethOrderFormAssetFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ethorderformasset.d.ts.map