import { TReferenceProps } from '../../..'; import { IStringProps, TStringValidatorResult } from '../_types'; export interface IDoesNotContainProps { /** * The list of blacklist values. Can be either an array of string/regex, or just a string/regex. */ values: (string | RegExp) | (string | RegExp)[]; /** * Wether a string should not contain/match every value. * * @default true */ matchAll?: boolean; } /** * Check if the string does not contain a value or does not match to a RegExp. */ export declare const doesNotContain: (props: TReferenceProps & IStringProps) => TStringValidatorResult;