/** * Convert kebab-case or PascalCase to camelCase. * * @param input - The string to convert. * @returns The camelCased string. */ export function toCamelCase(input: string): string