import React from 'react'; import { AtLeastOne } from '../../types/atLeastOne.js'; type ProductIdentifier = { sku?: string; uuid?: string; productId?: string; }; declare const ProductSelector: React.FC<{ onSelect: (sku: string, uuid: string, productId: string) => Promise | void; onUnSelect?: (sku: string, uuid: string, productId: string) => Promise | void; selectedProducts: Array>; }>; export { ProductSelector };