import { INumberProps, TNumberValidatorResult } from '../_types'; export interface IRoundProps { /** * Decimal places. */ precision: number; } /** * Round a number to the specified `precision`. */ export declare const round: (props: IRoundProps & Omit) => TNumberValidatorResult;