/**
 * @param s A string in camel, pascal, snake, kebab and spaced case format.
 * @returns The string broken into an array of words.
 * @example toWords("convertMy_string") === ["convert", "My", "string"]
 */
export default function toWords(s: string): string[];
//# sourceMappingURL=toWords.d.ts.map