export declare class StringUtil {
    static capitalizeFirstLetter(s: string): string;
    static withoutDots(str: string): string;
    static removeAccents(str: string): string;
    static textToCamel(text: string): string;
    static camelToText(camel: string): string;
}
