import { CKEditor4InteropProcessor } from '../processors/CKEditor4InteropProcessor';
import { CKEditor5InteropProcessor } from '../processors/CKEditor5InteropProcessor';
import { DevExpressRichEditProcessor } from '../processors/DevExpressRichEditProcessor';
import { GenericInteropProcessor } from '../processors/GenericInteropProcessor';
import { HTMLInteropProcessor } from '../processors/HTMLInteropProcessor';
import { EditorType } from './EditorType';
export declare class ProcessorFactory {
    static createProcessor(editorType: EditorType, enableLogs: boolean): HTMLInteropProcessor | CKEditor4InteropProcessor | CKEditor5InteropProcessor | DevExpressRichEditProcessor | GenericInteropProcessor;
}
