import React from 'react'; import { FlintMenubarSubContent as FlintMenubarSubContentElement } from '@getufy/flint-ui/menubar/flint-menubar'; /** * The dropdown panel of a sub-menu. Positioned to the right of the trigger. Auto-flips left when the panel would overflow the viewport edge. */ export interface FlintMenubarSubContentProps extends React.HTMLAttributes { /** Whether the sub-menu dropdown panel is visible. */ open?: boolean; } export declare const FlintMenubarSubContent: React.ForwardRefExoticComponent>;