///
import _blacklist from 'validator/lib/blacklist';
import { IStringProps, TStringValidatorResult } from '../_types';
declare type TParameters = Parameters;
export interface IBlacklistProps {
/**
* Blacklist to be used. The characters are used in a RegExp and so you will need to escape some chars, e.g. `\\[\\]`.
*/
chars: TParameters[1];
}
/**
* Remove characters that appear in the blacklist.
*/
export declare const blacklist: (props: IBlacklistProps & Omit) => TStringValidatorResult;
export {};