import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "babylon.btclightclient.v1"; /** * BTCHeaderInfo is a structure that contains all relevant information about a * BTC header * - Full header bytes * - Header hash for easy retrieval * - Height of the header in the BTC chain * - Total work spent on the header. This is the sum of the work corresponding * to the header Bits field * and the total work of the header. */ export interface BTCHeaderInfo { header: Uint8Array; hash: Uint8Array; height: number; work: Uint8Array; } export declare const BTCHeaderInfo: { encode(message: BTCHeaderInfo, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): BTCHeaderInfo; fromJSON(object: any): BTCHeaderInfo; toJSON(message: BTCHeaderInfo): unknown; fromPartial, never>>(object: I): BTCHeaderInfo; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; type KeysOfUnion = T extends T ? keyof T : never; export type Exact = P extends Builtin ? P : P & { [K in keyof P]: Exact; } & Record>, never>; export {};