import React from 'react'; /** * Props for the NavItemsComponent. * @since 2.7.0 * @updated 3.0.0 - Simplified to use NavItemsService from @abpjs/theme-shared */ export interface NavItemsComponentProps { /** Whether the screen is small (mobile) */ smallScreen?: boolean; } /** * Public API component for navigation items. * Uses NavItemsService from @abpjs/theme-shared to manage nav items. * * This component is part of the theme-basic public API and can be * replaced using the component replacement system with eThemeBasicComponents.NavItems. * * @since 2.7.0 - Added as public API component * @updated 3.0.0 - Now uses NavItemsService from @abpjs/theme-shared * * @example * ```tsx * // Basic usage - nav items are configured via NavItemsService * * * // For small screens * * ``` */ export declare function NavItemsComponent({ smallScreen: _smallScreen, }: NavItemsComponentProps): React.ReactElement; export default NavItemsComponent;