import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { AssetType, AssetType$Outbound } from "./assettype.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type ItemLastSale = { date: Date; /** * Blockchain address in Union format `${blockchainGroup}:${token}` */ seller?: string | undefined; /** * Blockchain address in Union format `${blockchainGroup}:${token}` */ buyer?: string | undefined; value: string; currency: AssetType; price: string; }; /** @internal */ export declare const ItemLastSale$inboundSchema: z.ZodType; /** @internal */ export type ItemLastSale$Outbound = { date: string; seller?: string | undefined; buyer?: string | undefined; value: string; currency: AssetType$Outbound; price: string; }; /** @internal */ export declare const ItemLastSale$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 ItemLastSale$ { /** @deprecated use `ItemLastSale$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ItemLastSale$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ItemLastSale$Outbound` instead. */ type Outbound = ItemLastSale$Outbound; } export declare function itemLastSaleToJSON(itemLastSale: ItemLastSale): string; export declare function itemLastSaleFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=itemlastsale.d.ts.map