import * as React from 'react'; import { PureComponent } from 'react'; declare module 'react' { interface ImgHTMLAttributes { value?: string; } } import { CustomToolbarProps, CustomToolbarState } from './interface'; declare class CustomToolbar extends PureComponent { static defaultProps: { className: string; iconPrefix: string; toolbar: any[]; customEmoji: any[]; customLink: {}; customInsertValue: {}; prefixCls: string; popoverPlacement: string; tooltipPlacement: string; formatPainterActive: boolean; getPopupContainer: () => HTMLElement; }; private defaultSizes; private curSizeList; private curInsertValueList; private Locale; toolbarCtner: HTMLDivElement; constructor(props: CustomToolbarProps); componentDidMount(): void; handleIVSearchChange: (e: React.ChangeEvent) => void; handleClearIVSearch: () => void; getModuleHTML: (mType: any, key: any) => JSX.Element; handleFormatPainterClick: () => void; handleSizeItemClick: (e: any) => void; genToolbar: (toolbar: any) => any[]; handleSizePopoverVisibleChange: (visible: any) => void; render(): JSX.Element; } export default CustomToolbar;