import type { HTMLAttributes, ReactNode, Ref } from "react"; export interface NavBarProps extends HTMLAttributes { /** Brand slot (wordmark / logo link), leading edge. */ brand?: ReactNode; /** Trailing actions slot (theme switch, CTA). */ actions?: ReactNode; /** Nav links. */ children?: ReactNode; /** Forwarded ref to the header element. */ ref?: Ref; } /** Top navigation bar with brand, nav-link, and trailing-action slots. */ export declare function NavBar({ brand, actions, children, className, ref, ...rest }: NavBarProps): import("react").JSX.Element; //# sourceMappingURL=NavBar.d.ts.map