export declare namespace StringUtil {
    function encodeStringToUint8Array(str: string): Uint8Array;
    function decodeStringFromUint8Array(bytes: Uint8Array): string;
    function removeAnsiColorCodes(text: string): string;
}
