import { type SvgIconProps } from '@mui/material/SvgIcon';
import React from 'react';
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) => React.JSX.Element;
export default Logo;
