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