///
import { BoxProps } from '@mui/material/Box';
export interface BrandLogoProps extends BoxProps {
data?: Blob;
width?: number | string;
height?: number | string;
isError?: boolean;
isLoading?: boolean;
fallbackIconUrl?: string;
}
declare function BrandLogo({ data, isError, isLoading, width, height, fallbackIconUrl, ...props }: Readonly): import("react").JSX.Element;
declare const _default: import("react").MemoExoticComponent;
export default _default;