import { type ComponentPropsWithoutRef, type ElementType } from 'react'; export type NavigationLinkProps = { tag: ElementType; isExternal?: boolean; } & ComponentPropsWithoutRef<'a'>; /** * The component for the navigation link. * This component should be used only in the MainNavigation component. * * If the `isExternal` property is set to true, return an general anchor element `` with `target="_blank"`. * If the `isExternal` property is set to false, return a component using tag property. */ export declare function NavigationLink({ tag, isExternal, children, ...rest }: NavigationLinkProps): import("react/jsx-runtime").JSX.Element;