export declare function encodeAscii(asciiString: string): Uint8Array<ArrayBuffer>;
export declare function decodeAscii(buffer: Uint8Array): string;
export declare class ChunkedAsciiDecoder {
    private str;
    private readonly textDecoder;
    writeChunk(chunk: Uint8Array): void;
    toString(): string;
}
