import { RootState } from '../../../app/store/store'; export declare const getListAttributes: (state: RootState) => import('./types').IAttributeAsset[]; export declare const getAttributeByName: (optionName: string) => (state: RootState) => import('./types').IAttributeAsset | undefined; export declare const getAllMaterialValues: (state: RootState) => import('./types').AttributeValue[]; export declare const getMaterialSelectStateFilters: (state: RootState) => import('./types').IMaterialSelectState; export declare const getProductElementOptions: (state: RootState) => any[]; export declare const getSelectedMaterials: (state: RootState) => import('./types').AttributeValue[]; export declare const getIsLoadingSelectedProduct: (state: RootState) => boolean; export declare const getIsOpenMultiCart: (state: RootState) => boolean; export declare const getSelectedProduct: (state: RootState) => import('../../MultiProduct/model/types').IProductListItem | null;