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 Asset = { type: AssetType; value: string; }; /** @internal */ export declare const Asset$inboundSchema: z.ZodType; /** @internal */ export type Asset$Outbound = { type: AssetType$Outbound; value: string; }; /** @internal */ export declare const Asset$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 Asset$ { /** @deprecated use `Asset$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `Asset$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `Asset$Outbound` instead. */ type Outbound = Asset$Outbound; } export declare function assetToJSON(asset: Asset): string; export declare function assetFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=asset.d.ts.map