import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "cosmos.base.store.v1beta1"; /** SnapshotItem is an item contained in a rootmulti.Store snapshot. */ export interface SnapshotItem { store?: SnapshotStoreItem | undefined; iavl?: SnapshotIAVLItem | undefined; } /** SnapshotStoreItem contains metadata about a snapshotted store. */ export interface SnapshotStoreItem { name: string; } /** SnapshotIAVLItem is an exported IAVL node. */ export interface SnapshotIAVLItem { key: Uint8Array; value: Uint8Array; version: Long; height: number; } export declare const SnapshotItem: { encode(message: SnapshotItem, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number | undefined): SnapshotItem; fromJSON(object: any): SnapshotItem; toJSON(message: SnapshotItem): unknown; fromPartial(object: DeepPartial): SnapshotItem; }; export declare const SnapshotStoreItem: { encode(message: SnapshotStoreItem, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number | undefined): SnapshotStoreItem; fromJSON(object: any): SnapshotStoreItem; toJSON(message: SnapshotStoreItem): unknown; fromPartial(object: DeepPartial): SnapshotStoreItem; }; export declare const SnapshotIAVLItem: { encode(message: SnapshotIAVLItem, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number | undefined): SnapshotIAVLItem; fromJSON(object: any): SnapshotIAVLItem; toJSON(message: SnapshotIAVLItem): unknown; fromPartial(object: DeepPartial): SnapshotIAVLItem; }; declare type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined | Long; export declare type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; export {};