import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "cosmos.store.internal.kv.v1beta1"; /** Pairs defines a repeated slice of Pair objects. */ export interface Pairs { pairs: Pair[]; } /** Pair defines a key/value bytes tuple. */ export interface Pair { key: Uint8Array; value: Uint8Array; } export declare const Pairs: { encode(message: Pairs, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Pairs; fromJSON(object: any): Pairs; toJSON(message: Pairs): unknown; create(base?: DeepPartial): Pairs; fromPartial(object: DeepPartial): Pairs; }; export declare const Pair: { encode(message: Pair, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Pair; fromJSON(object: any): Pair; toJSON(message: Pair): unknown; create(base?: DeepPartial): Pair; fromPartial(object: DeepPartial): Pair; }; 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 {};