import * as React from 'react'; import { SimpleButtonProps } from '../SimpleButton'; interface EditorButtonProps extends SimpleButtonProps { data: string; } declare function EditorButton(props: EditorButtonProps): React.JSX.Element; export default EditorButton;