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<IRibbonToolButtonProps>;
export default RibbonToolButton;
