import { SimpleVector2, SimpleVector3, SimpleVector4 } from "../math"; import { Color } from "./color.model"; export declare class Range { readonly min: T; readonly max: T; constructor(min: T, max?: T); static random(range: Range): number; static randomVector2i(range: Range): SimpleVector2; static randomVector3i(range: Range): SimpleVector3; static randomVector4i(range: Range): SimpleVector4; static randomVector2f(range: Range): SimpleVector2; static randomVector3f(range: Range): SimpleVector3; static randomVector4f(range: Range): SimpleVector4; static randomColorF(range: Range): Color; static randomColorI(range: Range): Color; } //# sourceMappingURL=range.d.ts.map