import React from 'react'; import { FlintMenubarGroup as FlintMenubarGroupElement } from '@getufy/flint-ui/menubar/flint-menubar'; /** * Groups related menu items. Optional `heading` shows a label. */ export interface FlintMenubarGroupProps extends React.HTMLAttributes { /** Label text displayed above the group. */ heading?: string; } export declare const FlintMenubarGroup: React.ForwardRefExoticComponent>;