/// import { Brand, Entity as EntityType, EntityDetails, MerchantInfo } from '../../types/index.js'; import { MerchantsDropdownProps } from './type'; type EntityListProps = { items: (EntityDetails & EntityType)[]; brand: Brand; menuFlipped?: boolean; value?: MerchantInfo; onChange: MerchantsDropdownProps['onValueChange']; }; declare const EntityList: (props: EntityListProps) => import("react").JSX.Element; export default EntityList;