/**
 * 首字母大写
 * capitalize('hello world') => Hello world
 */
declare function capitalize(str: string): string;

export { capitalize };
