import { Any } from "../../../google/protobuf/any"; import * as _m0 from "protobufjs/minimal"; import { Long, DeepPartial } from "@osmonauts/helpers"; /** * BaseAccount defines a base account type. It contains all the necessary fields * for basic account functionality. Any custom account type should extend this * type for additional functionality (e.g. vesting). */ export interface BaseAccount { address: string; pub_key: Any; account_number: Long; sequence: Long; } /** ModuleAccount defines an account for modules that holds coins on a pool. */ export interface ModuleAccount { base_account: BaseAccount; name: string; permissions: string[]; } /** Params defines the parameters for the auth module. */ export interface Params { max_memo_characters: Long; tx_sig_limit: Long; tx_size_cost_per_byte: Long; sig_verify_cost_ed25519: Long; sig_verify_cost_secp256k1: Long; } export declare const BaseAccount: { encode(message: BaseAccount, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): BaseAccount; fromJSON(object: any): BaseAccount; toJSON(message: BaseAccount): unknown; fromPartial(object: DeepPartial): BaseAccount; }; export declare const ModuleAccount: { encode(message: ModuleAccount, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ModuleAccount; fromJSON(object: any): ModuleAccount; toJSON(message: ModuleAccount): unknown; fromPartial(object: DeepPartial): ModuleAccount; }; export declare const Params: { encode(message: Params, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): Params; fromJSON(object: any): Params; toJSON(message: Params): unknown; fromPartial(object: DeepPartial): Params; };