import { ComponentProps, FC } from 'react'; import { DeepPartial } from '../../types/types'; import { NavbarTheme } from './theme'; export interface NavbarLink extends Omit, "content"> { href: string; label: string; content?: React.ReactNode; active?: boolean; } export interface NavbarProps extends Omit, "children"> { theme?: DeepPartial; rightContent?: React.ReactNode; leftContent?: React.ReactNode; links?: NavbarLink[]; linkClassName?: string; } /** * @name Navbar * @description The Navbar component is used to display a navigation bar in the top of the page, it is usually used to navigate to different pages or sections of the same page. * @returns React.FC */ export declare const Navbar: FC; //# sourceMappingURL=Navbar.d.ts.map