import { TReferenceProps } from '../../..'; import { INumberProps, TNumberValidatorResult } from '../_types'; export interface IIsDifferentThanProps { /** * The list of blacklisted values. */ values: number[]; } /** * Check if the number is different than a list of values. */ export declare const isDifferentThan: (props: TReferenceProps & INumberProps) => TNumberValidatorResult;