import { Product } from 'types/entities.types'; import { Collection } from 'types/entities.types'; export declare type ProductsState = { products: { [key: string]: Product; }; activeFetched?: boolean; draftFetched?: boolean; suggested: string[]; recentSearches: string[]; collectionsProductsIds: { [key: string]: Collection; }; }; declare const products: import("redux-actions").ReduxCompatibleReducer; export default products;