/** Lowest value that can be encoded directly as (negative) integer */ export declare const minBigInt: bigint; /** Highest value that can be encoded directly as (positive) integer */ export declare const maxBigInt: bigint; export declare const MAX_4_BYTES = 4294967295; export declare const OVERFLOW_1_BYTE = 256; export declare const OVERFLOW_2_BYTES = 65536; export declare const OVERFLOW_4_BYTES = 4294967296; export declare const MAX_1_BYTE = 255;