import * as React from 'react'; import './RowSpacingDropdown.less'; declare type RowSpacingDropdownProps = { onClick: (...args: any[]) => any; editor?: any; rsList: any[]; }; declare class RowSpacingDropdown extends React.Component { static defaultProps: { editor: any; }; dropDown: any; onRef: (ref: any) => void; /** * 下拉列表改变回调 * @params type 下拉列表中选中的key */ onChange: (type: any) => void; /** * 获取当前选中区域光标开头对应的段前段后 */ getRowSpacing: () => string; render(): JSX.Element; } export default RowSpacingDropdown;