import type { NavItemWithLink } from '@rspress/core';
import { type ReactNode } from 'react';
export interface NavMenuSingleItemProps extends Omit<NavItemWithLink, 'text'> {
    base?: string;
    compact?: boolean;
    download?: string | boolean;
    pathname?: string;
    rightIcon?: ReactNode;
    text?: ReactNode;
}
export declare function NavMenuSingleItem({ activeMatch, base, compact, download, link, pathname, rightIcon, text, tag, }: NavMenuSingleItemProps): import("react/jsx-runtime").JSX.Element;
