import * as React from 'react'; type EditorProps = { defaultValue: string; value?: string; editing: boolean; disableToolbar: boolean; /** * Get the data from the editor on blur. * * Only called when the editor is in edit mode and the data is not the same as the default value. * * @param data - The data that was changed */ onBlurValue: (data: string) => void; }; /** * TODO: Renders twice all the time. :( */ declare const Editor: React.FC; export default Editor;