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 EthSeaportConsideration = { itemType: EthSeaportItemType; /** * Blockchain address in Union format `${blockchainGroup}:${token}` */ token: string; identifierOrCriteria: string; startAmount: string; endAmount: string; /** * Blockchain address in Union format `${blockchainGroup}:${token}` */ recipient: string; }; /** @internal */ export declare const EthSeaportConsideration$inboundSchema: z.ZodType; /** @internal */ export type EthSeaportConsideration$Outbound = { itemType: string; token: string; identifierOrCriteria: string; startAmount: string; endAmount: string; recipient: string; }; /** @internal */ export declare const EthSeaportConsideration$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 EthSeaportConsideration$ { /** @deprecated use `EthSeaportConsideration$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EthSeaportConsideration$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EthSeaportConsideration$Outbound` instead. */ type Outbound = EthSeaportConsideration$Outbound; } export declare function ethSeaportConsiderationToJSON(ethSeaportConsideration: EthSeaportConsideration): string; export declare function ethSeaportConsiderationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ethseaportconsideration.d.ts.map