/// /** * The HeaderNavigation component is used to display the main menus. The component has default padding and a gap between the logo block and the menu area. * *```tsx * import * as React from "react" * import * as System from "@harborschool/lighthouse" * import { useTheme } from "@harborschool/lighthouse" * * export default () => { * const theme = useTheme() * * return ( * * * * * * * * * * Item0 * * * Item1 * * * * * * * * * * * * ) * } * ``` * @param children - React.ReactNode * @param overrides - \{ Header?: StyletronReact.StyleObject } */ export declare const HeaderNavigation: React.FC; export { HeaderNavigationItem } from "./header-navigation-item"; export * from "./types"; import { HeaderNavigationPropsT } from "./types";