export declare class Cursor {
    static setOffsetForGeneric(element: HTMLElement, offset: number, countedText?: number): number;
    static focusEndOfGeneric(element: HTMLElement): void;
    static setOffsetForSafariGeneric(element: HTMLElement, newTextLength: number): void;
    static setOffsetForPrimitive(element: HTMLInputElement, offset: number, scroll: boolean): void;
    static getGenericElementCursorOffset(element: HTMLElement, selection: Selection, isStart: boolean): number;
}
