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