import { BinaryReader, BinaryWriter } from '../../binary.js'; import { type JsonSafe } from '../../json-safe.js'; export declare enum ICAAccountType { DELEGATION = 0, FEE = 1, WITHDRAWAL = 2, REDEMPTION = 3, COMMUNITY_POOL_DEPOSIT = 4, COMMUNITY_POOL_RETURN = 5, CONVERTER_UNWIND = 6, CONVERTER_TRADE = 7, UNRECOGNIZED = -1 } export declare const ICAAccountTypeSDKType: typeof ICAAccountType; export declare function iCAAccountTypeFromJSON(object: any): ICAAccountType; export declare function iCAAccountTypeToJSON(object: ICAAccountType): string; export interface ICAAccount { chainId: string; type: ICAAccountType; connectionId: string; address: string; } export interface ICAAccountProtoMsg { typeUrl: '/stride.stakeibc.ICAAccount'; value: Uint8Array; } export interface ICAAccountSDKType { chain_id: string; type: ICAAccountType; connection_id: string; address: string; } export declare const ICAAccount: { typeUrl: "/stride.stakeibc.ICAAccount"; encode(message: ICAAccount, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ICAAccount; fromJSON(object: any): ICAAccount; toJSON(message: ICAAccount): JsonSafe; fromPartial(object: Partial): ICAAccount; fromProtoMsg(message: ICAAccountProtoMsg): ICAAccount; toProto(message: ICAAccount): Uint8Array; toProtoMsg(message: ICAAccount): ICAAccountProtoMsg; }; //# sourceMappingURL=ica_account.d.ts.map