import { default as React } from 'react';
import { SubMenu } from '../../utils/utils';
interface IProps {
    emojiIconRef: React.RefObject<any>;
    activeAnnotation: SubMenu | '';
    handleEmojiClick: (emoji: any) => void;
    handleButtonClick: () => void;
    handleShowDropdown: () => void;
    handleHideDropdown: () => void;
}
declare const EmojiDropdown: React.FC<IProps>;
export default EmojiDropdown;
