export declare class StringUtils {
    private constructor();
    static isNullOrWhitespace(str: string | undefined): boolean;
    static repeat(str: string, times: number): string;
    static startsWith(str: string, startsWithString: string): boolean;
    static endsWith(str: string, endsWithString: string): boolean;
}
