/** * Rounds value to optional step. */ declare function round(value: number, step?: number): number; export = round;