export type Boundary = [start: number, end: number]; export type BoundaryWithOffset = [start: number, end: number, offset: number]; export declare class Boundaries { readonly items: BoundaryWithOffset[]; add([start, end]: Boundary): void; size(): number; }