export declare class StringUtil {
    static stringToHashCode(str: string): number;
    static longestCommonPrefixOpt(strs: string[]): string;
}
