import * as React from 'react'; import type { Cursor } from '../../../../json-crdt-extensions/peritext/editor/Cursor'; import type { Point } from '../../../../json-crdt-extensions/peritext/rga/Point'; import type { Inline } from '../../../../json-crdt-extensions'; export interface CaretViewProps { italic?: boolean; point: Point; cursor: Cursor; /** Inline text slice followed after the cursor. */ fwd?: Inline; /** Inline text slice followed before the cursor. */ bwd?: Inline; } export declare const CaretView: React.FC;