export declare function camelToKebabCase(str: string): string;
export declare function kebabToCamelCase(str: string): string;
export declare function kebabToPascalCase(str: string): string;
export declare function uppercaseFirstChar(str: string): string;
export declare const escapeQuotes: (str: string) => string;
