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