import { UintVariable } from './UintVariable';
export declare class Uint64 extends UintVariable {
    static readonly MaxValue: Uint64;
    static readonly MinValue: Uint64;
    static readonly Zero: Uint64;
    constructor(low?: number, high?: number);
    readonly and: (other: number | Uint64) => Uint64;
    readonly not: () => Uint64;
    readonly or: (other: number | Uint64) => Uint64;
    readonly rightShift: (shift: number) => Uint64;
    readonly leftShift: (shift: number) => Uint64;
    readonly subtract: (other: Uint64) => Uint64;
    readonly toUint32: () => number;
}
