import { HTMLAttributes, ReactChild } from 'react' export interface NavbarProps extends HTMLAttributes { toggler?: ReactChild brand?: ReactChild } export interface NavLinkProps extends HTMLAttributes { to: string }