import React, { FC } from "react";
export interface IRibbonDropdownItemProps {
    className?: string;
    target?: string;
    caption?: string;
    children?: React.ReactNode;
    onClick?: any;
    hotkey?: string;
}
declare const RibbonDropdownItem: FC<IRibbonDropdownItemProps>;
export default RibbonDropdownItem;
