import { ReactNode } from 'react'; import { SxProps } from '@mui/material/styles'; import { Brand, MerchantInfo } from '../../types/index.js'; export interface MerchantsDropdownProps { brands: Brand[]; label: ReactNode; sx?: SxProps; selectedValue?: MerchantInfo; isLoading?: boolean; isFetchingNextPage?: boolean; isDisabled?: boolean; onValueChange: (merchant: Required) => void; renderBrandLogo: (fileId: string) => React.ReactNode; showSearchInput?: boolean; }