import { LinkProps } from '@zag-js/navigation-menu'; import { Assign } from '../../types'; import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface NavigationMenuLinkBaseProps extends Partial, PolymorphicProps { } export interface NavigationMenuLinkProps extends Assign, NavigationMenuLinkBaseProps> { } export declare const NavigationMenuLink: ForwardRefExoticComponent>;