import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AssetClass = { symbol: string; name: string; }; /** @internal */ export declare const AssetClass$inboundSchema: z.ZodType; /** @internal */ export type AssetClass$Outbound = { symbol: string; name: string; }; /** @internal */ export declare const AssetClass$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 AssetClass$ { /** @deprecated use `AssetClass$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AssetClass$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AssetClass$Outbound` instead. */ type Outbound = AssetClass$Outbound; } export declare function assetClassToJSON(assetClass: AssetClass): string; export declare function assetClassFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=assetclass.d.ts.map