/// <reference types="node" />
export declare class HexBuffer {
    private readonly _buffer;
    addString(str: string): void;
    addStringNoNewline(str: string): void;
    addNewLine(): void;
    addChar(char: string): void;
    addChars(chars: string): void;
    addInt(int: number, isShort?: boolean): void;
    addShort(short: number): void;
    addFloat(float: number): void;
    addByte(byte: number): void;
    addNullTerminator(): void;
    getBuffer(): Buffer;
}
