import type { ComponentProps, FC, PropsWithChildren } from "react"; import { KeepBoolean } from "../../Keep/KeepTheme"; export interface KeepSidebarLogoTheme { base: string; collapsed: KeepBoolean; img: string; } export interface SidebarLogoProps extends PropsWithChildren, ComponentProps<"a"> { href: string; img: string; imgAlt?: string; } export declare const SidebarLogo: FC;