import * as react from 'react'; import { ReactNode } from 'react'; type SocialLink = { title: string; href: string; image: ReactNode; className?: string; }; interface NavProps { links?: SocialLink[]; logo?: ReactNode; } declare function Navbar({ links, logo }: NavProps): react.JSX.Element; export { type NavProps, Navbar, type SocialLink };