import React from 'react'; import { FlintNavigationMenuLink as FlintNavigationMenuLinkElement } from '@getufy/flint-ui/navigation-menu/flint-navigation-menu-link'; /** * @slot default - Link text/content */ export interface FlintNavigationMenuLinkProps extends Omit, 'title'> { /** The link URL */ href?: string; /** The link target (e.g., '_blank') */ target?: string; /** Link title/tooltip */ title?: string; /** Whether the link is disabled */ disabled?: boolean; /** Whether this link represents the current page. */ active?: boolean; } export declare const FlintNavigationMenuLink: React.ForwardRefExoticComponent>;