import { default as React } from 'react'; import { CommomProps } from '../../common/props'; interface Props extends CommomProps { /** * 可选的表情 */ emojis?: Array; /** * 插入后是否选中内容 */ selectAfterInsert?: boolean; } declare const Emoji: (props: Props) => React.JSX.Element; export default Emoji;