import type { FC } from "react"; import type { INavigation, INavigationItem } from "./config/types/index.d.mts"; import type { IComponentBaseProps } from "../../types/components/index.d.mts"; /** * Компонент навигации * @returns {ReactElement} */ declare const Navigation: FC; export type { INavigation, INavigationItem, }; export { Navigation };