///
import { Brand } from '../../types/index.js';
import { MerchantsDropdownProps } from './type';
interface BrandItemProps {
brand: Brand;
onClose: () => void;
selectedValue?: MerchantsDropdownProps['selectedValue'];
onValueChange: MerchantsDropdownProps['onValueChange'];
renderBrandLogo: (fileId: string) => React.ReactNode;
}
declare function BrandItem({ brand, onClose, selectedValue, onValueChange, renderBrandLogo }: Readonly): import("react").JSX.Element;
declare const _default: import("react").MemoExoticComponent;
export default _default;