/** * Remove characters with code points in the range of 0-31 and 127 from the string. * * @param str - The string to process * @param keep_new_lines - If true, new line characters will be preserved * @returns The processed string with low ASCII characters removed */ export default function stripLow(str: string, keep_new_lines?: boolean): string;