import type { PropsFor } from "../../types.js";
export type NavTopProps = PropsFor<"header", {
    /** Any content placed left of the logo (like a menu toggle button) */
    preLogo?: React.ReactNode;
    /**
     * Custom logo
     * @example
     * logo="App Name"
     * @example
     * logo={
     *   <a href="/" className="bf-neutral-link">
     *     <Nav.Logo logo="logo.svg">
     *       App Name
     *     </Nav.Logo>
     *   </a>
     * }
     */
    logo: React.ReactNode;
}>;
/**
 * Nav top bar
 */
declare const NavTop: import("react").ForwardRefExoticComponent<NavTopProps & import("react").RefAttributes<HTMLElement>>;
export default NavTop;
