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<ActionRecipe>, editor?: Element | any): void;
    processCommand(command: Partial<ActionRecipe>, editor?: Element | any): void;
    GetLastCharacter(RichEdit: any): any[];
    ApplyPostBeautification(recipe: Partial<ActionRecipe>, lineEnd: boolean, RichEdit: any): void;
}
export { DevExpressRichEditProcessor };
