import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export declare const SolanaFtAssetTypeAtType: { readonly SolanaFt: "SOLANA_FT"; }; export type SolanaFtAssetTypeAtType = ClosedEnum; export type SolanaFtAssetType = { atType: SolanaFtAssetTypeAtType; /** * Blockchain contract address in Union format `ETHEREUM:${token}` */ address: string; }; /** @internal */ export declare const SolanaFtAssetTypeAtType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const SolanaFtAssetTypeAtType$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 SolanaFtAssetTypeAtType$ { /** @deprecated use `SolanaFtAssetTypeAtType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly SolanaFt: "SOLANA_FT"; }>; /** @deprecated use `SolanaFtAssetTypeAtType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly SolanaFt: "SOLANA_FT"; }>; } /** @internal */ export declare const SolanaFtAssetType$inboundSchema: z.ZodType; /** @internal */ export type SolanaFtAssetType$Outbound = { "@type": string; address: string; }; /** @internal */ export declare const SolanaFtAssetType$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 SolanaFtAssetType$ { /** @deprecated use `SolanaFtAssetType$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SolanaFtAssetType$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SolanaFtAssetType$Outbound` instead. */ type Outbound = SolanaFtAssetType$Outbound; } export declare function solanaFtAssetTypeToJSON(solanaFtAssetType: SolanaFtAssetType): string; export declare function solanaFtAssetTypeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=solanaftassettype.d.ts.map