export declare class UintVariable {
    readonly bits: Uint32Array;
    constructor(bits: number | Uint8Array | Uint32Array | Array<number>);
    readonly equals: (other: UintVariable) => boolean;
    readonly toString: () => string;
}
