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