import { type SvgIconProps } from '@mui/material/SvgIcon'; export declare enum LogoTheme { Primary = "primary", White = "white", WhiteWithRay = "whiteWithRay", PrimaryWithText = "primaryWithText", BlackWithTextAndRay = "blackWithTextAndRay" } type UDLogoProps = SvgIconProps & { theme?: LogoTheme; inverse?: boolean; }; declare const Logo: ({ theme, ...props }: UDLogoProps) => JSX.Element; export default Logo;