import React, { MouseEvent } from 'react';
import { EmojiArrType } from '@/_config/emoji';
interface EmojiProps {
    onClick?: (emoji: EmojiArrType) => void;
    onEmojiBtnClick?: (e?: MouseEvent<HTMLImageElement>) => void;
}
declare const Emoji: React.FC<EmojiProps>;
export default Emoji;
