import type { ReactNode } from 'react'; import type { NavigationProps, StringLikeChildren, WithRequired } from '../types.js'; export interface UNSTABLE_TopNavProps { children: ReactNode; } export declare function UNSTABLE_TopNav({ children }: UNSTABLE_TopNavProps): import("react/jsx-runtime").JSX.Element; export interface UNSTABLE_TopNavItemProps extends WithRequired { children: StringLikeChildren; isActive?: boolean; } export declare function UNSTABLE_TopNavItem({ children, href, isActive, ...props }: UNSTABLE_TopNavItemProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=top-nav.d.ts.map