/** * Split a string into words: handles camelCase, PascalCase, UPPER_CASE, * UPPER_SNAKE_CASE, snake_case, kebab-case, spaces, and dot.notation. * * Shared helper used by kebabCase, startCase, and sentenceCase. */ export default function words(str: string): string[];