export declare class Range { from: number; to: number; constructor(from: number, to: number); equals(other: Range): boolean; isEmpty(): boolean; toString(): string; static empty: Range; } //# sourceMappingURL=range.d.ts.map