import { TReferenceProps } from '../../..'; import { INumberProps, TNumberValidatorResult } from '../_types'; export interface IIsNegativeProps { } /** * Check if the `number` is negative. */ export declare const isNegative: (props?: TReferenceProps & INumberProps) => TNumberValidatorResult;