/**
 * 首字母大写的驼峰
 * pascalCase('hello-world') => HelloWorld
 */
declare function pascalCase(str: string): string;

export { pascalCase };
