import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "cosmos.benchmark.v1"; /** Op is a message describing a benchmark operation. */ export interface Op { seed: Long; actor: string; keyLength: Long; valueLength: Long; iterations: number; delete: boolean; exists: boolean; } export declare const Op: { encode(message: Op, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Op; fromJSON(object: any): Op; toJSON(message: Op): unknown; create(base?: DeepPartial): Op; fromPartial(object: DeepPartial): Op; }; 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 {};