import React from "react"; import { SxProps } from "@mui/material"; import { BoxProps } from "@mui/material/Box"; import { LogoType } from "../types"; import { LogoProps } from "./Logo"; export interface BrandProps { src?: LogoType; sx?: SxProps; LogoProps?: LogoProps; BoxProps?: Omit; } declare const Brand: React.FC; export default Brand;