import '../index.scss'; import { IconName } from '@linzjs/lui/dist/components/LuiIcon/LuiIcon'; export interface RibbonMenuOption { id?: string; popoverTarget?: string; popoverTargetAction?: 'toggle' | 'show' | 'hide' | undefined; anchorName?: string; title?: string; icon?: IconName; disabled?: boolean; className?: string; testId?: string; onClick?: () => void; } export declare const RibbonMenuOption: import("react").ForwardRefExoticComponent>;