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 NftOfCollectionAssetTypeAtType: { readonly NftOfCollection: "NFT_OF_COLLECTION"; }; export type NftOfCollectionAssetTypeAtType = ClosedEnum; export type NftOfCollectionAssetType = { atType: NftOfCollectionAssetTypeAtType; /** * Collection id */ collectionId: string; }; /** @internal */ export declare const NftOfCollectionAssetTypeAtType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const NftOfCollectionAssetTypeAtType$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 NftOfCollectionAssetTypeAtType$ { /** @deprecated use `NftOfCollectionAssetTypeAtType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly NftOfCollection: "NFT_OF_COLLECTION"; }>; /** @deprecated use `NftOfCollectionAssetTypeAtType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly NftOfCollection: "NFT_OF_COLLECTION"; }>; } /** @internal */ export declare const NftOfCollectionAssetType$inboundSchema: z.ZodType; /** @internal */ export type NftOfCollectionAssetType$Outbound = { "@type": string; collectionId: string; }; /** @internal */ export declare const NftOfCollectionAssetType$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 NftOfCollectionAssetType$ { /** @deprecated use `NftOfCollectionAssetType$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `NftOfCollectionAssetType$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `NftOfCollectionAssetType$Outbound` instead. */ type Outbound = NftOfCollectionAssetType$Outbound; } export declare function nftOfCollectionAssetTypeToJSON(nftOfCollectionAssetType: NftOfCollectionAssetType): string; export declare function nftOfCollectionAssetTypeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=nftofcollectionassettype.d.ts.map