/**
 * 驼峰
 * camelCase('hello-world') => helloWorld
 */
declare function camelCase(str: string): string;

export { camelCase };
