import { ContentProps } from '@zag-js/navigation-menu'; import { Assign } from '../../types'; import { HTMLProps, PolymorphicProps } from '../factory'; import { ForwardRefExoticComponent, RefAttributes } from 'react'; export interface NavigationMenuContentBaseProps extends Partial, PolymorphicProps { } export interface NavigationMenuContentProps extends Assign, NavigationMenuContentBaseProps> { } export declare const NavigationMenuContent: ForwardRefExoticComponent>;