import BootstrapNavbar from "react-bootstrap/Navbar"; import { AppSwitcher } from "./AppSwitcher"; import { UserDropdown } from "./UserDropdown"; import { Avatar } from "../Avatar"; import Username from "./UserDropdown/Username"; import type { HTMLAttributes } from "react"; import type { BsPrefixRefForwardingComponent } from "react-bootstrap/helpers"; import type { NavbarProps } from "react-bootstrap/Navbar"; export declare type IElement = HTMLElement; export declare type IAttributes = Omit, "role" | "onSelect">; export interface INavbarProps extends Omit, IAttributes { "data-testid"?: string; } export declare type INavbarWrapper = BsPrefixRefForwardingComponent<"nav", INavbarProps>; export interface INavbar extends INavbarWrapper { AppSwitcher: typeof AppSwitcher; UserDropdown: typeof UserDropdown; Username: typeof Username; Avatar: typeof Avatar; Brand: typeof BootstrapNavbar.Brand; Collapse: typeof BootstrapNavbar.Collapse; Toggle: typeof BootstrapNavbar.Toggle; }