import { AttributeValue } from '../../../features/swatches/model/types'; export interface IMaterialItemProps { val: AttributeValue; className?: string; isShowDeleteIcon?: boolean; handleSelect?: (arg: AttributeValue) => void; } export declare const MaterialItem: ({ val, className, isShowDeleteIcon, handleSelect, }: IMaterialItemProps) => import("react/jsx-runtime").JSX.Element;