import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "cosmos.store.v1beta1"; /** * CommitInfo defines commit information used by the multi-store when committing * a version/height. */ export interface CommitInfo { version: Long; storeInfos: StoreInfo[]; timestamp: Date | undefined; } /** * StoreInfo defines store-specific commit information. It contains a reference * between a store name and the commit ID. */ export interface StoreInfo { name: string; commitId: CommitID | undefined; } /** * CommitID defines the commitment information when a specific store is * committed. */ export interface CommitID { version: Long; hash: Uint8Array; } export declare const CommitInfo: { encode(message: CommitInfo, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): CommitInfo; fromJSON(object: any): CommitInfo; toJSON(message: CommitInfo): unknown; create(base?: DeepPartial): CommitInfo; fromPartial(object: DeepPartial): CommitInfo; }; export declare const StoreInfo: { encode(message: StoreInfo, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): StoreInfo; fromJSON(object: any): StoreInfo; toJSON(message: StoreInfo): unknown; create(base?: DeepPartial): StoreInfo; fromPartial(object: DeepPartial): StoreInfo; }; export declare const CommitID: { encode(message: CommitID, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): CommitID; fromJSON(object: any): CommitID; toJSON(message: CommitID): unknown; create(base?: DeepPartial): CommitID; fromPartial(object: DeepPartial): CommitID; }; 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 {};