import { FC } from "react"; export interface IRibbonToolButtonProps { className?: string; icon?: string; image?: string; children?: any; title?: string; onClick?: any; hotkey?: string; } declare const RibbonToolButton: FC; export default RibbonToolButton;