import type React from 'react';
import { BoxProps } from '@mui/material';
interface LogoContainerProps extends BoxProps {
    logoSrc?: string | React.ReactNode;
    logoAlt?: string;
    width?: string;
}
declare const Logo: React.FC<LogoContainerProps>;
export default Logo;
//# sourceMappingURL=logo.d.ts.map