import React from 'react'; import { FlintMenubar as FlintMenubarElement } from '@getufy/flint-ui/menubar/flint-menubar'; /** * A visually persistent horizontal menu bar, common in desktop applications. Hosts one or more `` children. * * @slot (default) - One or more `` elements. */ export interface FlintMenubarProps extends React.HTMLAttributes { /** Accessible label for the menubar region. Defaults to "Menu bar". */ label?: string; /** * Bubbles from items. * DOM event: `flint-menubar-item-select` */ onFlintMenubarItemSelect?: (event: CustomEvent) => void; /** * Bubbles from checkbox items. * DOM event: `flint-menubar-checkbox-change` */ onFlintMenubarCheckboxChange?: (event: CustomEvent) => void; /** * Bubbles from radio groups. * DOM event: `flint-menubar-radio-change` */ onFlintMenubarRadioChange?: (event: CustomEvent) => void; } export declare const FlintMenubar: React.ForwardRefExoticComponent>;