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<BoxProps, "sx">;
}
declare const Brand: React.FC<BrandProps>;
export default Brand;
