import type { JSX } from 'react';
export type SidebarLogoProps = {
    imageUrl?: string;
    href?: string;
    altText?: string;
    dataTestId?: string;
    backgroundColor?: string;
    className?: string;
};
export declare function SidebarLogo({ imageUrl, href, altText, backgroundColor, dataTestId, className, }?: SidebarLogoProps): JSX.Element | null;
