/// import { Entity } from '../../types/index.js'; import { MerchantsDropdownProps } from './type'; interface EntityProps { entity: Entity; brandId: string; selectedValue?: MerchantsDropdownProps['selectedValue']; onValueChange: MerchantsDropdownProps['onValueChange']; onlyOne?: boolean; menuFlipped?: boolean; } declare function EntityItem(props: Readonly): import("react").JSX.Element; declare const _default: import("react").MemoExoticComponent; export default _default;