import * as React from 'react'; declare type EmoticonButtonProps = { onClick?: (...args: any[]) => any; editor?: any; emoticonList: any[]; columnsNum?: number; }; declare class EmoticonButton extends React.Component { /** * 选中表情 */ onChange: (emoticon: any) => void; render(): JSX.Element; } export default EmoticonButton;