import { ReactNode } from 'react'; interface NavLinksProps { /** Default icon for routes without specific icons */ defaultIcon?: ReactNode; } /** * Navigation links component that renders routes from ABP config. * Icons are taken from the route's `icon` property. * Routes are filtered based on sidebar search query. */ export declare const NavLinks: ({ defaultIcon }: NavLinksProps) => import("react/jsx-runtime").JSX.Element; export {};