import { PropsWithChildren } from "react";
import { To } from "react-router-dom";
import { type Feature } from "../environment";
import { TFuncKey } from "../i18n";
type RootMenuItem = {
    label: TFuncKey;
    path: string;
    isVisible?: keyof Feature;
    modulePath?: string;
};
type MenuItemWithChildren = {
    label: TFuncKey;
    children: MenuItem[];
    isVisible?: keyof Feature;
};
export type MenuItem = RootMenuItem | MenuItemWithChildren;
export declare const PageNav: () => import("react/jsx-runtime").JSX.Element;
type NavLinkProps = {
    to: To;
    isActive: boolean;
};
export declare const NavLink: ({ to, isActive, children, }: PropsWithChildren<NavLinkProps>) => import("react/jsx-runtime").JSX.Element;
export {};
