import { ActionRecipe } from '../../recipe'; import { EditorType } from '../core/EditorType'; import { BaseInteropProcessor } from './BaseInteropProcessor'; import { InteropProcessor } from './InteropProcessor'; declare class DevExpressRichEditProcessor extends BaseInteropProcessor implements InteropProcessor { private searchWordList; constructor(loggingEnabled: boolean); get editorType(): EditorType; processFinalResult(recipe: Partial, editor?: Element | any): void; processCommand(command: Partial, editor?: Element | any): void; GetLastCharacter(RichEdit: any): any[]; ApplyPostBeautification(recipe: Partial, lineEnd: boolean, RichEdit: any): void; } export { DevExpressRichEditProcessor };