/** Represents a boundary point as defined in the DOM Level 2 spec. */ export interface BoundaryPoint { container: Node; offset: number; } export declare function createRangeWithBoundaryPoints(document: Document, start: BoundaryPoint, end: BoundaryPoint): Range;