/** @jsxRuntime classic */ /** @jsx jsx */ import { type ReactNode } from 'react'; import { jsx } from '@keystone-ui/core'; import { type NavigationProps, type ListMeta } from "../../types/index.js"; type NavItemProps = { href: string; children: ReactNode; isSelected?: boolean; }; export declare const NavItem: ({ href, children, isSelected: _isSelected }: NavItemProps) => jsx.JSX.Element; export type NavigationContainerProps = Partial> & { children: ReactNode; }; export declare const NavigationContainer: ({ authenticatedItem, children }: NavigationContainerProps) => jsx.JSX.Element; export declare const ListNavItem: ({ list }: { list: ListMeta; }) => jsx.JSX.Element; type NavItemsProps = Pick & { include?: string[]; }; export declare const ListNavItems: ({ lists, include }: NavItemsProps) => jsx.JSX.Element; export declare function Navigation(): jsx.JSX.Element | null; export {}; //# sourceMappingURL=Navigation.d.ts.map