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