/** * 转驼峰命名 * foo-bar → fooBar */ export declare const camelCase: (str: string) => string;