import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; import { EthSeaportItemType } from "./ethseaportitemtype.js"; export type EthSeaportOffer = { itemType: EthSeaportItemType; /** * Blockchain address in Union format `${blockchainGroup}:${token}` */ token: string; identifierOrCriteria: string; startAmount: string; endAmount: string; }; /** @internal */ export declare const EthSeaportOffer$inboundSchema: z.ZodType; /** @internal */ export type EthSeaportOffer$Outbound = { itemType: string; token: string; identifierOrCriteria: string; startAmount: string; endAmount: string; }; /** @internal */ export declare const EthSeaportOffer$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 EthSeaportOffer$ { /** @deprecated use `EthSeaportOffer$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EthSeaportOffer$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EthSeaportOffer$Outbound` instead. */ type Outbound = EthSeaportOffer$Outbound; } export declare function ethSeaportOfferToJSON(ethSeaportOffer: EthSeaportOffer): string; export declare function ethSeaportOfferFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ethseaportoffer.d.ts.map