import { Field } from "o1js"; import { UIntConstructor, UInt } from "./UInt"; import { UInt64 } from "./UInt64"; export declare class UInt32 extends UInt<32> { static Unsafe: { fromField(value: Field): UInt32; }; static Safe: { fromField(value: Field): UInt32; }; static check(x: { value: Field; }): void; static from(x: UInt32 | bigint | number | string): UInt32; static get zero(): UInt32; static get max(): UInt32; constructorReference(): UIntConstructor<32>; numBits(): 32; toUInt64(): UInt64; } //# sourceMappingURL=UInt32.d.ts.map