import { INumberValue } from './Integers.types'; import { IResult } from '../../Result/_types'; /** * Represents an unsigned 8-bit integer. */ export default class Byte extends Number implements INumberValue { #private; /** The largest number that can be represented. Equal to 255. */ static readonly maxValue: number; /** The lowest number that can be represented. Equal to 0. */ static readonly minValue: number; constructor(value: number); [Symbol.toPrimitive](): number; valueOf(): number; toString(): string; static parse(value: string): Byte; static tryParse(value: string): IResult; }