import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "tendermint.libs.bits"; export interface BitArray { bits: Long; elems: Long[]; } export declare const BitArray: { encode(message: BitArray, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): BitArray; fromJSON(object: any): BitArray; toJSON(message: BitArray): unknown; create(base?: DeepPartial): BitArray; fromPartial(object: DeepPartial): BitArray; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Long ? string | number | Long : T extends globalThis.Array ? globalThis.Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; export {};