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