import Long from "long"; import _m0 from "protobufjs/minimal"; import { BaseAccount } from "../../../../cosmos/auth/v1beta1/auth"; export declare const protobufPackage = "ibc.applications.interchain_accounts.v1"; /** An InterchainAccount is defined as a BaseAccount & the address of the account owner on the controller chain */ export interface InterchainAccount { baseAccount: BaseAccount | undefined; accountOwner: string; } export declare const InterchainAccount: { encode(message: InterchainAccount, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): InterchainAccount; fromJSON(object: any): InterchainAccount; toJSON(message: InterchainAccount): unknown; create(base?: DeepPartial): InterchainAccount; fromPartial(object: DeepPartial): InterchainAccount; }; 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 {};