import { BigNumberLike } from "@rarible/types"; import { EthSeaportItemType } from "./EthSeaportItemType"; import { UnionAddress } from "@rarible/types"; export type EthSeaportOffer = { itemType: EthSeaportItemType; token: UnionAddress; identifierOrCriteria: BigNumberLike; startAmount: BigNumberLike; endAmount: BigNumberLike; };