import { FC } from "react";
export interface IRibbonButtonProps {
    className?: string;
    title?: string;
    icon?: string;
    image?: string;
    caption?: string;
    children?: any;
    onClick?: any;
    hotkey?: string;
}
declare const RibbonButton: FC<IRibbonButtonProps>;
export default RibbonButton;
