import * as React from 'react'; declare type CleanStyleButtonProps = { onClick: (...args: any[]) => any; editor?: any; }; declare class CleanStyleButton extends React.Component { static defaultProps: { editor: any; }; onClick: () => void; /** * 清除格式是否可用 */ isDisabled: () => any; render(): JSX.Element; } export default CleanStyleButton;