import { AttributeValue } from '../../../features/swatches/model/types'; interface IMaterialListItemProps { val: AttributeValue; isSelected: boolean; onClick: (item: AttributeValue) => void; } export declare const MaterialListItem: ({ val, isSelected, onClick, }: IMaterialListItemProps) => import("react/jsx-runtime").JSX.Element; export {};