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 FlowAssetTypeNftAtType: { readonly FlowNft: "FLOW_NFT"; }; export type FlowAssetTypeNftAtType = ClosedEnum; export type FlowAssetTypeNft = { atType: FlowAssetTypeNftAtType; /** * Blockchain contract address in Union format `ETHEREUM:${token}` */ contract: string; /** * Collection id */ collection?: string | undefined; tokenId: string; }; /** @internal */ export declare const FlowAssetTypeNftAtType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const FlowAssetTypeNftAtType$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 FlowAssetTypeNftAtType$ { /** @deprecated use `FlowAssetTypeNftAtType$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly FlowNft: "FLOW_NFT"; }>; /** @deprecated use `FlowAssetTypeNftAtType$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly FlowNft: "FLOW_NFT"; }>; } /** @internal */ export declare const FlowAssetTypeNft$inboundSchema: z.ZodType; /** @internal */ export type FlowAssetTypeNft$Outbound = { "@type": string; contract: string; collection?: string | undefined; tokenId: string; }; /** @internal */ export declare const FlowAssetTypeNft$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 FlowAssetTypeNft$ { /** @deprecated use `FlowAssetTypeNft$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `FlowAssetTypeNft$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `FlowAssetTypeNft$Outbound` instead. */ type Outbound = FlowAssetTypeNft$Outbound; } export declare function flowAssetTypeNftToJSON(flowAssetTypeNft: FlowAssetTypeNft): string; export declare function flowAssetTypeNftFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=flowassettypenft.d.ts.map