import React from 'react';
import { EmojiType } from './types';
interface EmojiProps {
onChange?: Function;
}
declare class EmojiOne extends React.PureComponent<EmojiProps> {
handleClick: (emo: EmojiType) => void;
render(): JSX.Element;
}
export default EmojiOne;