export declare abstract class StringHelper { static check(str: string, def: string | null): string; static lower(str: string, def: string | null): string; static trim(str: string, def: string | null): string; }