import type { ComponentProps, FC, PropsWithChildren } from 'react'; export interface SidebarLogoProps extends PropsWithChildren> { className?: string; href: string; img: string; imgAlt?: string; } declare const SidebarLogo: FC; export default SidebarLogo;