import { SanitationOptions } from '../../interfaces'; /** * Remove characters that appear in the blacklist. The characters are used in a RegExp and so you will need to * escape some chars, e.g @Blacklist('\\[\\]') */ export declare function Blacklist(chars: string, annotationOptions?: SanitationOptions): PropertyDecorator;