import { BigNumber } from "@rarible/types"; import { FlowAddress } from "@rarible/types"; import { FlowContractAddress } from "@rarible/types"; import { FlowCreator } from "./FlowCreator"; import { FlowRoyalty } from "./FlowRoyalty"; export declare type FlowNftItem = { id: string; collection: FlowContractAddress; tokenId: BigNumber; creators: Array; owner?: FlowAddress; royalties: Array; metaUrl?: string; mintedAt: string; lastUpdatedAt: string; supply: BigNumber; deleted: boolean; };