/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { default as PropTypes } from 'prop-types';
import { EditorView, Node } from '@progress/kendo-editor-common';
import { EditorProps } from './EditorProps.js';
import * as React from 'react';
/**
* @hidden
*/
interface EditorStateInterface {
view?: EditorView;
linkDialog?: boolean;
}
/**
* Represents the [KendoReact Editor component](https://www.telerik.com/kendo-react-ui/components/editor).
*
* @example
* ```jsx
* const App = () => {
* return (
*
* );
* }
* ```
*/
export declare class Editor extends React.Component {
/**
* @hidden
*/
static propTypes: {
defaultContent: PropTypes.Requireable;
value: PropTypes.Requireable>;
defaultEditMode: PropTypes.Requireable;
contentStyle: PropTypes.Requireable