/**
 * 说明
 * kebabCase('helloWorld') => hello-world
 */
declare function kebabCase(key: string): string;

export { kebabCase };
