/** * 横线转驼峰命名 * @param str * @returns */ declare function camelize(str: string): string; export default camelize;