import { AnchoredEditorData } from '../types/AnchoredEditorData';
import { TargetEditor } from './TargetEditor';
declare abstract class CommonEditorUtils {
    static anchoredEditor: AnchoredEditorData | undefined;
    static setAnchoredElement(activeEditor: Element | undefined, editorName: string | null): void;
    static moveToPreviousField(activeEditor: Element, listOfControls: TargetEditor[]): void;
    static moveToNextField(activeEditor: Element, listOfControls: TargetEditor[]): void;
    static getActiveEditorElement(): Element | null;
}
export { CommonEditorUtils };
