import I_Vector from '../common/Vector/I_Vector'; import BoundingBox from '../common/BoundingBox'; declare const randomInt: (min: number, max: number) => number; declare const randomFloat: (min: number, max: number) => number; declare const randomColor: () => string; declare const randomPoint: ({ topLeft, topRight, bottomLeft }: BoundingBox) => I_Vector; declare const randomPoints: (count: number, box: BoundingBox) => I_Vector[]; export { randomInt, randomFloat, randomColor, randomPoint, randomPoints }; //# sourceMappingURL=random.d.ts.map