import type { ContainerProps } from '@chakra-ui/react'; import { SidebarProps } from './sidebar'; export interface NavbarProps extends ContainerProps { /** Props to pass to the Sidebar component in the drawer */ sidebarProps?: Omit; } export declare const Navbar: ({ sidebarProps, ...props }: NavbarProps) => import("react/jsx-runtime").JSX.Element;