import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; import { Result as SafeParseResult } from "../types/fp.js"; import { Creator, Creator$Outbound } from "./creator.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { Royalty, Royalty$Outbound } from "./royalty.js"; export declare const EthErc721LazyAssetTypeAtType: { readonly Erc721Lazy: "ERC721_Lazy"; }; export type EthErc721LazyAssetTypeAtType = ClosedEnum; export type EthErc721LazyAssetType = { atType: EthErc721LazyAssetTypeAtType; /** * Blockchain contract address in Union format `ETHEREUM:${token}` */ contract: string; /** * Collection id */ collection?: string | undefined; tokenId: string; uri: string; /** * Creators of the target item */ creators: Array; royalties: Array; signatures: Array; }; /** @internal */ export declare const EthErc721LazyAssetTypeAtType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const EthErc721LazyAssetTypeAtType$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 EthErc721LazyAssetTypeAtType$ { /** @deprecated use `EthErc721LazyAssetTypeAtType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Erc721Lazy: "ERC721_Lazy"; }>; /** @deprecated use `EthErc721LazyAssetTypeAtType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Erc721Lazy: "ERC721_Lazy"; }>; } /** @internal */ export declare const EthErc721LazyAssetType$inboundSchema: z.ZodType; /** @internal */ export type EthErc721LazyAssetType$Outbound = { "@type": string; contract: string; collection?: string | undefined; tokenId: string; uri: string; creators: Array; royalties: Array; signatures: Array; }; /** @internal */ export declare const EthErc721LazyAssetType$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 EthErc721LazyAssetType$ { /** @deprecated use `EthErc721LazyAssetType$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EthErc721LazyAssetType$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EthErc721LazyAssetType$Outbound` instead. */ type Outbound = EthErc721LazyAssetType$Outbound; } export declare function ethErc721LazyAssetTypeToJSON(ethErc721LazyAssetType: EthErc721LazyAssetType): string; export declare function ethErc721LazyAssetTypeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=etherc721lazyassettype.d.ts.map