import type { PropsFor } from "../../types.js";
type NavLogoProps = PropsFor<"div", {
    /**
     * Logo graphic, either as a `string` used in `<img src="string" />` or a
     * custom logo element. Defaults to intlity "it" svg logo.
     */
    logo?: React.ReactNode;
}>;
declare const NavLogo: import("react").ForwardRefExoticComponent<NavLogoProps & import("react").RefAttributes<HTMLDivElement>>;
export default NavLogo;
