import { EditorUnhangRangeOptions, Path, Point, Range, Span } from "slate"; import { TEditor, Value } from "./TEditor"; export type UnhangRangeOptions = EditorUnhangRangeOptions & { unhang?: boolean; }; /** * Convert a range into a non-hanging one if: * - `unhang` is true, * - `at` (default: selection) is a range. */ export declare const unhangRange: (editor: TEditor, range?: Range | Path | Point | Span | null, options?: UnhangRangeOptions) => import("slate").BaseRange | undefined; //# sourceMappingURL=unhangRange.d.ts.map