/** * * * Represents a numeric range defined by a low and high bound. */ export declare class Range { /** * * The lower bound of the range. */ low: number | undefined; /** * * The upper bound of the range. */ high: number | undefined; constructor(partial: Partial); toJSON(): object; static fromJSON(json: any, ignoreUnknownKeys?: boolean, path?: Array): Range; }