/// import _stripLow from 'validator/lib/stripLow'; import { IStringProps, TStringValidatorResult } from '../_types'; declare type TParameters = Parameters; export interface IStripLowProps { /** * Wether to preserve newline characters (`\n` and `\r`, hex `0xA` and `0xD`). */ keepNewLines?: TParameters[1]; } /** * Remove characters with a numerical value `<32` and `127`, mostly control characters. * * If `keepNewLines` is set to `true`, newline characters are preserved (`\n` and `\r`, hex `0xA` and `0xD`). Unicode-safe in JavaScript. */ export declare const stripLow: (props?: IStripLowProps & Omit) => TStringValidatorResult; export {};