import { Product, Category, StringValue } from '@jetshop/core/types'; type ItemList = string | Product | Category; export declare function usePropsOfType(props: { [key: string]: { type: string; value: StringValue | Product | Category; }; }, type: string): { filteredItems: ItemList[]; }; export {};