/** * Separates words in a string by a separator; the default separator is a space. * * Example: `separateWords('HelloWorld')` returns `'Hello World'`. */ declare function separateWords(str: string, separator?: string, ensureProperCase?: boolean): string; export { separateWords };