| /** | |
| * Converts from snake case to camel case | |
| * @param str | |
| */ | |
| export declare function dashToCamelCase(str: string): string; | |
| /** | |
| * Converts from camel case to snake case | |
| * @param str | |
| */ | |
| export declare function camelToDashCase(str: string): string; | |
| //# sourceMappingURL=util.d.ts.map |