import * as React from 'react'; import './FontSizeDropdown.less'; declare type FontSizeDropdownProps = { onClick?: (...args: any[]) => any; editor?: any; fontSizeList?: any[]; }; declare class FontSizeDropdown extends React.Component { dropDown: any; onRef: (ref: any) => void; /** * 下拉列表改变回调 * @params type 下拉列表中选中的key */ onChange: (type: any) => void; getFontSize: () => string; render(): JSX.Element; } export default FontSizeDropdown;