import { SxProps, Theme } from '@mui/material'; import { ReactNode } from 'react'; export interface LogoAvatarProps { src?: string | null; alt?: string; size?: number; fallbackIcon?: ReactNode; sx?: SxProps; } /** * Rounded square avatar for an entity logo (supplier, agency, brand…). Falls back to a storefront * icon when the logo is missing or broken; pass `fallbackIcon` for other entity kinds. */ declare const LogoAvatar: ({ src, alt, size, sx, fallbackIcon }: LogoAvatarProps) => import("@emotion/react/jsx-runtime").JSX.Element; export default LogoAvatar;