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