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