import React from 'react'; import { Merchant, MerchantInfo as MerchantInfoType } from '../../types/index.js'; import MerchantItem from './MerchantItem'; type OnItemClick = Exclude['onClick'], undefined>; type MerchantsListProps = { items: Merchant[]; onItemClick?: (event: Parameters[0], selected: Merchant) => void; menuFlipped?: boolean; value?: MerchantInfoType; }; declare const MerchantsList: (props: MerchantsListProps) => React.JSX.Element; export default MerchantsList;