import { ComponentProps, FC } from 'react'; import { DeepPartial, IBoolean } from '../../types/types'; export interface SidebarLogoTheme { base: string; collapsed: IBoolean; img: string; } export interface SidebarLogoProps extends ComponentProps<"a"> { href: string; img: string; imgAlt?: string; theme?: DeepPartial; } export declare const SidebarLogo: FC; //# sourceMappingURL=SidebarLogo.d.ts.map