///
import { SxProps } from '@mui/material';
export type MerchantLogoProps = {
data?: Blob;
width?: number | string;
height?: number | string;
isError?: boolean;
isLoading?: boolean;
sx?: SxProps;
};
export default function MerchantLogo({ data, width, height, ...props }: Readonly): import("react").JSX.Element;