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