/**
 * Round number to a specific radix
 */
declare function round(value: number, radix?: number): number;
export default round;
