import { INumberValue } from './Integers.types'; import { IResult } from '../../Result/_types'; export default class UnsignedInt32 extends Number implements INumberValue { #private; /** The largest number that can be represented. Equal to 4,294,967,295. */ 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): UnsignedInt32; static tryParse(value: string): IResult; }