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 SolanaNftAssetTypeAtType: { readonly SolanaNft: "SOLANA_NFT"; }; export type SolanaNftAssetTypeAtType = ClosedEnum; export type SolanaNftAssetType = { atType: SolanaNftAssetTypeAtType; /** * Blockchain contract address in Union format `ETHEREUM:${token}` */ contract?: string | undefined; /** * Collection id */ collection?: string | undefined; /** * Item Id, has format `ETHEREUM:${token}:${tokenId}` */ itemId: string; }; /** @internal */ export declare const SolanaNftAssetTypeAtType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const SolanaNftAssetTypeAtType$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 SolanaNftAssetTypeAtType$ { /** @deprecated use `SolanaNftAssetTypeAtType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly SolanaNft: "SOLANA_NFT"; }>; /** @deprecated use `SolanaNftAssetTypeAtType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly SolanaNft: "SOLANA_NFT"; }>; } /** @internal */ export declare const SolanaNftAssetType$inboundSchema: z.ZodType; /** @internal */ export type SolanaNftAssetType$Outbound = { "@type": string; contract?: string | undefined; collection?: string | undefined; itemId: string; }; /** @internal */ export declare const SolanaNftAssetType$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 SolanaNftAssetType$ { /** @deprecated use `SolanaNftAssetType$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SolanaNftAssetType$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SolanaNftAssetType$Outbound` instead. */ type Outbound = SolanaNftAssetType$Outbound; } export declare function solanaNftAssetTypeToJSON(solanaNftAssetType: SolanaNftAssetType): string; export declare function solanaNftAssetTypeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=solananftassettype.d.ts.map