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