import "../styles/selection.scss"; import type { EditorKit } from "doc-editor-core"; import type { Path } from "doc-editor-delta"; import type { FC } from "react"; export declare const focusSelection: (editor: EditorKit, path?: Path, edge?: "start" | "end") => void; export declare const SelectionWrapper: FC<{ readonly: boolean; className?: string; }>;