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