import { INumberValue } from './Integers.types'; import { IResult } from '../../Result/_types'; export default class Int32 extends Number implements INumberValue { #private; /** The largest number that can be represented. Equal to 2,147,483,647. */ static readonly maxValue: number; /** The lowest number that can be represented. Equal to -2,147,483,648. */ static readonly minValue: number; constructor(value: number); [Symbol.toPrimitive](): number; valueOf(): number; static parse(value: string): Int32; static tryParse(value: string): IResult; }