import Product from './Product'; interface ProductCollection { [key: number]: Product; } export default ProductCollection;