/** * Strip any control characters from a string (eg backspace or carriage return) * * @param str - The string to strip * @returns The string without control characters */ export declare const stripControlCharacters: (str: string) => string;