/** * Removes leading and trailing spaces and replaces multiple whitespace, tabs * and newlines with one space. * * @returns Trimmed text. */ declare function trimWhitespace(text: string): string; export default trimWhitespace;