import Long from "long"; import _m0 from "protobufjs/minimal"; import { BaseAccount } from "../../../cosmos/auth/v1beta1/auth"; export declare const protobufPackage = "ethermint.types.v1"; /** * EthAccount implements the sdk.AccountI interface and embeds an * authtypes.BaseAccount type. It is compatible with the auth AccountKeeper. */ export interface EthAccount { /** base_account is an authtypes.BaseAccount */ baseAccount: BaseAccount | undefined; /** code_hash is the hash calculated from the code contents */ codeHash: string; } export declare const EthAccount: { encode(message: EthAccount, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): EthAccount; fromJSON(object: any): EthAccount; toJSON(message: EthAccount): unknown; create(base?: DeepPartial): EthAccount; fromPartial(object: DeepPartial): EthAccount; }; 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 {};