import React from 'react'; import { AtLeastOne } from '../../types/atLeastOne.js'; interface AttributeGroupIdentifier { attributeGroupId?: string | number; uuid?: string; } declare const AttributeGroupSelector: React.FC<{ onSelect: (id: string | number, uuid: string, name: string) => void; onUnSelect: (id: string | number, uuid: string, name: string) => void; selectedAttributeGroups: AtLeastOne[]; }>; export { AttributeGroupSelector };