import { Editor, BlockElement, BoxElement } from "../../interface"; export declare function highlightRemoteCaretElem(elem: HTMLElement): void; export declare function createSingleRemoteCaretElement(editor: Editor, block: BlockElement, userId: string, userName: string, color: string, selectionColor: string, rect: DOMRect, type: 'start' | 'end' | 'single', className: string): HTMLDivElement; export declare function createRemoteCaretElementByFakeCaret(editor: Editor, userId: string, caretBoxElement: BoxElement, type: 'start' | 'end' | 'single'): HTMLDivElement;