/** * Normalize white spaces in a `string` (value). * @param value - A `string` to be normalized. */ declare const normalizeWhiteSpaces: (value: string) => string; export default normalizeWhiteSpaces;