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