export { camelize, hyphenate, hyphenate as kebabCase, } from '@vue/shared'; /** * fork from {@link https://github.com/sindresorhus/escape-string-regexp} */ export declare const escapeStringRegexp: (string?: string) => string; export declare const capitalize: (str: T) => Capitalize; export declare function getStringLength(str: string): number; export declare function cutString(str: string, maxlength: number): string;