import * as React from 'react'; declare type ItalicButtonProps = { onClick?: (...args: any[]) => any; editor?: any; }; declare class ItalicButton extends React.Component { onClick: (e: any) => void; isDisabled: () => boolean; render(): JSX.Element; } export default ItalicButton;