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 EthErc1155LazyAssetTypeAtType: { readonly Erc1155Lazy: "ERC1155_Lazy"; }; export type EthErc1155LazyAssetTypeAtType = ClosedEnum; export type EthErc1155LazyAssetType = { atType: EthErc1155LazyAssetTypeAtType; /** * Blockchain contract address in Union format `ETHEREUM:${token}` */ contract: string; /** * Collection id */ collection?: string | undefined; tokenId: string; uri: string; supply: string; /** * Creators of the target item */ creators: Array; royalties: Array; signatures: Array; }; /** @internal */ export declare const EthErc1155LazyAssetTypeAtType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const EthErc1155LazyAssetTypeAtType$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 EthErc1155LazyAssetTypeAtType$ { /** @deprecated use `EthErc1155LazyAssetTypeAtType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Erc1155Lazy: "ERC1155_Lazy"; }>; /** @deprecated use `EthErc1155LazyAssetTypeAtType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Erc1155Lazy: "ERC1155_Lazy"; }>; } /** @internal */ export declare const EthErc1155LazyAssetType$inboundSchema: z.ZodType; /** @internal */ export type EthErc1155LazyAssetType$Outbound = { "@type": string; contract: string; collection?: string | undefined; tokenId: string; uri: string; supply: string; creators: Array; royalties: Array; signatures: Array; }; /** @internal */ export declare const EthErc1155LazyAssetType$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 EthErc1155LazyAssetType$ { /** @deprecated use `EthErc1155LazyAssetType$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EthErc1155LazyAssetType$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EthErc1155LazyAssetType$Outbound` instead. */ type Outbound = EthErc1155LazyAssetType$Outbound; } export declare function ethErc1155LazyAssetTypeToJSON(ethErc1155LazyAssetType: EthErc1155LazyAssetType): string; export declare function ethErc1155LazyAssetTypeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=etherc1155lazyassettype.d.ts.map