export declare class UInt64 { bigint: bigint; lo: number; hi: number; constructor(bigint: bigint, lo: number, hi: number); toString(): string; static fromString(s: string): UInt64; } export declare class Int64 extends UInt64 { static fromString(s: string): Int64; }