import { Path, Point, Range } from '../slate/index.ts'; /** * Hyperscript point refs can be used to construct arbitrary points using the * ref prop of a tag. */ export declare class HyperscriptPointRef { path?: Path; offset?: number; point(): Point; } /** * Hyperscript range refs can be used to construct arbitrary range using the ref * props of and tags. */ export declare class HyperscriptRangeRef { anchor?: Point; focus?: Point; range(): Range; }