import { Range } from "./range"; import * as p from "../../core/properties"; export declare namespace NumericalRange { type Attrs = p.AttrsOf; type Props = Range.Props & { start: p.Property; end: p.Property; }; } export interface NumericalRange extends NumericalRange.Attrs { } export declare abstract class NumericalRange extends Range { properties: NumericalRange.Props; constructor(attrs?: Partial); } //# sourceMappingURL=numerical_range.d.ts.map