AssociateTx: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): AssociateTx;
    encode(message: AssociateTx, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: AssociateTxAmino): AssociateTx;
    fromAminoMsg(object: AssociateTxAminoMsg): AssociateTx;
    fromPartial(object: {
        customMessage?: string;
        r?: Uint8Array;
        s?: Uint8Array;
        v?: Uint8Array;
    }): AssociateTx;
    fromProtoMsg(message: AssociateTxProtoMsg): AssociateTx;
    toAmino(message: AssociateTx): AssociateTxAmino;
    toProto(message: AssociateTx): Uint8Array;
    toProtoMsg(message: AssociateTx): AssociateTxProtoMsg;
}