import type React from "react";
import type { DesignSystemLinkHref } from "../../routing/OctopusRoutingContext";
type SideNavBarLogoProps = {
    /**
     * The icon for this link.
     */
    icon: React.ReactNode;
    /**
     * The link location.
     */
    href: DesignSystemLinkHref;
    accessibleName: string;
};
export declare function SideNavBarLogo({ icon, href, accessibleName }: SideNavBarLogoProps): import("react/jsx-runtime").JSX.Element;
export {};
