import { Product, Route } from '@jetshop/core/types'; import { GridProductProps } from '@jetshop/ui/ProductList/GridProduct'; import React from 'react'; export interface ProductGridProps { className: string; products: Product[]; loading: boolean; listName: string; categoryPath: Route | null; ProductComponent: React.SFC; search?: string; hash?: string; category?: string; } declare const ProductGrid: ({ className, products, loading, listName, categoryPath, category, search, hash, ProductComponent }: ProductGridProps) => React.JSX.Element; export default ProductGrid;