///
import { MenuItem } from '../index.js';
import { Merchant, MerchantInfo as MerchantInfoType } from '../../types/index.js';
type MerchantItemProps = {
merchant: Merchant;
selectedValue?: MerchantInfoType;
onClick: React.ComponentProps['onClick'];
onlyOne?: boolean;
menuFlipped?: boolean;
className?: string;
};
declare const MerchantItem: (props: MerchantItemProps) => import("react").JSX.Element;
export default MerchantItem;