/** * 将驼峰字符串转换为对象路径 * * @param str 字符串 */ declare const transformToKeyPath: (str: string) => string; export default transformToKeyPath;