import { type BgVariant } from '../../utils/bg.js'; export interface NavbarCenteredProps { brand?: string; sticky?: boolean; transparent?: boolean; logo?: React.ReactNode; linksLeft?: React.ReactNode; linksRight?: React.ReactNode; bg?: BgVariant; className?: string; } export declare function NavbarCentered({ brand, sticky, transparent, logo, linksLeft, linksRight, bg, className, }: NavbarCenteredProps): import("react/jsx-runtime").JSX.Element;