import { FlowAddress } from "@rarible/types"; import { FlowContractAddress } from "@rarible/types"; export declare type FlowNftCollection = { id: FlowContractAddress; owner: FlowAddress; name: string; symbol: string; features: Array; }; export declare enum FlowNftCollectionFeatures { BURN = "BURN", SECONDARY_SALE_FEES = "SECONDARY_SALE_FEES" }