import { FC } from 'react'; import { HTMLTribeProps } from '../types/index.js'; export declare type NavbarLogoProps = HTMLTribeProps<'div'> & { src?: string | null; srcMobile?: string | null; name?: string; }; export declare const NavbarLogo: FC;