import { Primitives } from './primatives';
import { TypeSymbols } from '../constants';
export declare class Byte extends Primitives {
    private readonly byte;
    _type: TypeSymbols;
    constructor(byte: Uint8Array);
    static fromBytes(buf: Uint8Array): [Byte, Uint8Array];
    toJSON(): string;
    toBytes(): Uint8Array;
}
//# sourceMappingURL=byte.d.ts.map