import { TypeUint64 } from "../types/type-uint64"; import { Primitive } from "./primitive"; import { JSOptions } from "./types"; export declare class Uint64 extends Primitive { type: typeof TypeUint64; toInt(): number | null; toBigInt(): bigint | null; toJS(opts?: JSOptions): number | bigint | null; }