import { type Config } from './config'; export type CollectionConfig, NFT = Record> = { collection: { contract: string; deployValue: number; data: Collection; }; nft: { contract: string; deployValue: number; items: NFT[]; }; }; export declare const TS_EXTENSION = ".ts"; export declare const JSON_EXTENSION = ".json"; export declare function readCollectionConfig, NFT = Record>(config: Config, collectionWithExtension: string): CollectionConfig; //# sourceMappingURL=collection.d.ts.map